Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
bmartel committed Jun 24, 2024
1 parent b404bd6 commit ed8e662
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
7 changes: 6 additions & 1 deletion web/apps/labelstudio/src/components/Menubar/Menubar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,12 @@ export const Menubar = ({ enabled, defaultOpened, defaultPinned, children, onSid

<VersionNotifier showNewVersion />

<Menu.Item label="API" href="https://api.labelstud.io/api-reference/introduction/getting-started" icon={<IconTerminal />} target="_blank" />
<Menu.Item
label="API"
href="https://api.labelstud.io/api-reference/introduction/getting-started"
icon={<IconTerminal />}
target="_blank"
/>
<Menu.Item label="Docs" href="https://labelstud.io/guide" icon={<IconBook />} target="_blank" />
<Menu.Item
label="GitHub"
Expand Down
2 changes: 1 addition & 1 deletion web/apps/labelstudio/src/pages/Projects/ProjectsList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const EmptyProjectsList = ({ openModal }) => {
<Elem name="header" tag="h1">
Heidi doesn’t see any projects here!
</Elem>
<p>Create one and start labeling your data.</p>
<p>Create one and start labeling your data.</p>
<Elem name="action" tag={Button} onClick={openModal} look="primary">
Create Project
</Elem>
Expand Down
7 changes: 6 additions & 1 deletion web/apps/labelstudio/src/pages/Settings/GeneralSettings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@ export const GeneralSettings = () => {
<Form.Row columnCount={1} rowGap="16px">
<Input name="title" label="Project Name" labelProps={{ large: true }} />

<TextArea name="description" label="Description" labelProps={{ large: true }} style={{ minHeight: 128 }} />
<TextArea
name="description"
label="Description"
labelProps={{ large: true }}
style={{ minHeight: 128 }}
/>
{isFF(FF_LSDV_E_297) && (
<Block name="workspace-placeholder">
<Elem name="badge-wrapper">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ export const StorageSettings = () => {
<Elem name={"wrapper"}>
<h1>Cloud Storage</h1>
<Description style={{ marginTop: 0 }}>
Use cloud or database storage as the source for your labeling tasks or the target of your completed annotations.
Use cloud or database storage as the source for your labeling tasks or the target of your completed
annotations.
</Description>

<Columns count={2} gap="40px" size="320px" className={rootClass}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export const instruments = {
iconProps.style = {
marginRight: 3,
};
iconProps.color = "#566fcf";
iconProps.color = "#566fcf";
}
return (
<FieldsButton
Expand Down
2 changes: 1 addition & 1 deletion web/libs/datamanager/src/components/Filters/Filters.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const Filters = injector(({ views, currentView, filters }) => {
about="Pin to sidebar"
onClick={() => views.expandFilters()}
style={{ display: "inline-flex", alignItems: "center" }}
icon={<Icon icon={FaCaretSquareRight} size={18} />}
icon={<Icon icon={FaCaretSquareRight} size={18} />}
/>
</Tooltip>
) : null}
Expand Down

0 comments on commit ed8e662

Please sign in to comment.