Skip to content

Commit

Permalink
Merge branch 'v2' into feat/add-toolbar-buttons-to-x2many
Browse files Browse the repository at this point in the history
  • Loading branch information
mguellsegarra committed Jan 23, 2025
1 parent 36913b2 commit b91ffeb
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/actionbar/DashboardActionBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import {
} from "@ant-design/icons";
import { useLocale } from "@gisce/react-formiga-components";
import { ActionBarSeparator } from "./ActionBarSeparator";
import { ShareUrlButton } from "./ShareUrlButton";

function DashboardActionBar() {
const { isLoading, dashboardRef, moveItemsEnabled, setMoveItemsEnabled } =
Expand Down Expand Up @@ -53,6 +54,8 @@ function DashboardActionBar() {
dashboardRef?.current.refresh();
}}
/>
<ActionBarSeparator />
<ShareUrlButton />
</Space>
);
}
Expand Down
3 changes: 3 additions & 0 deletions src/locales/ca_ES.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,7 @@ export default {
previousItem: "Element anterior",
nextItem: "Element següent",
unlink: "Desvincular",
share: "Compartir URL",
copyToClipboard: "Copiar al porta-retalls",
urlCopiedToClipboard: "URL copiada al porta-retalls",
};
3 changes: 3 additions & 0 deletions src/locales/en_US.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,7 @@ export default {
previousItem: "Previous item",
nextItem: "Next item",
unlink: "Unlink",
share: "Compartir URL",
urlCopiedToClipboard: "URL copied to clipboard",
copyToClipboard: "Copy to clipboard",
};
3 changes: 3 additions & 0 deletions src/locales/es_ES.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,7 @@ export default {
previousItem: "Elemento anterior",
nextItem: "Elemento siguiente",
unlink: "Desvincular",
share: "Compartir URL",
urlCopiedToClipboard: "URL copiada al portapapeles",
copyToClipboard: "Copiar al portapapeles",
};

0 comments on commit b91ffeb

Please sign in to comment.