Skip to content

Commit 86fdbea

Browse files
committed
🔥(frontend) do not display feature version
A bug was found in the version feature. A 404 error appears sometimes, probably because of Minio that does not keep enough versions. We want to do a realease, so we will remove the version feature for now.
1 parent 520d511 commit 86fdbea

File tree

3 files changed

+0
-216
lines changed

3 files changed

+0
-216
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ and this project adheres to
1313

1414
- ✨Add image attachments with access control
1515
- ✨(frontend) Upload image to a document #211
16-
- ✨(frontend) Versions #217
1716
- ✨(frontend) Summary #223
1817

1918
## Changed

src/frontend/apps/e2e/__tests__/app-impress/doc-version.spec.ts

Lines changed: 0 additions & 201 deletions
This file was deleted.

src/frontend/apps/impress/src/features/docs/doc-header/components/DocToolBox.tsx

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -81,20 +81,6 @@ export const DocToolBox = ({ doc }: DocToolBoxProps) => {
8181
<Text $theme="primary">{t('Delete document')}</Text>
8282
</Button>
8383
)}
84-
{doc.abilities.versions_list && (
85-
<Button
86-
onClick={() => {
87-
setIsPanelVersionOpen(true);
88-
setIsPanelSummaryOpen(false);
89-
setIsDropOpen(false);
90-
}}
91-
color="primary-text"
92-
icon={<span className="material-icons">history</span>}
93-
size="small"
94-
>
95-
<Text $theme="primary">{t('Version history')}</Text>
96-
</Button>
97-
)}
9884
<Button
9985
onClick={() => {
10086
setIsPanelSummaryOpen(true);

0 commit comments

Comments
 (0)