Skip to content

Commit

Permalink
Merge pull request #4703 from voxel51/tweaks
Browse files Browse the repository at this point in the history
panel tweaks
  • Loading branch information
brimoor authored Aug 19, 2024
2 parents 76da359 + 5e29356 commit 443172e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,12 @@ const LayoutPopover = ({
color="primary"
/>
}
label="Auto Layout"
label="Auto layout"
/>
{isEditMode && !autoLayout && (
<>
<FormControl component="fieldset" sx={{ marginBottom: 2 }}>
<FormLabel component="legend">Layout Mode</FormLabel>
<FormLabel component="legend">Layout mode</FormLabel>
<RadioGroup
row
aria-label="layout-mode"
Expand Down Expand Up @@ -227,13 +227,13 @@ const ControlContainer = ({
{autoLayout && (
<Typography>
You can customize the layout of the items in this dashboard by
dragging to re-order.
dragging to re-order
</Typography>
)}
{!autoLayout && (
<Typography>
You can customize the layout of the items in this dashboard by
resizing them and dragging to re-order.
resizing them and dragging to re-order
</Typography>
)}
</Alert>
Expand Down
2 changes: 1 addition & 1 deletion docs/source/plugins/developing_plugins.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2963,7 +2963,7 @@ you to reveal all of its available methods during development:
.. code-block:: python
:linenos:
from fiftyone.operators.executor import ExecutionContext
from fiftyone.operators import ExecutionContext
def on_load(ctx: ExecutionContext):
ctx.trigger()
Expand Down
1 change: 1 addition & 0 deletions fiftyone/operators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
)
from .executor import (
execute_operator,
ExecutionContext,
ExecutionOptions,
)
from .utils import ProgressHandler
Expand Down

0 comments on commit 443172e

Please sign in to comment.