Skip to content

Commit

Permalink
client: Fix mindmap preview in revision
Browse files Browse the repository at this point in the history
  • Loading branch information
eliandoran committed Sep 2, 2024
1 parent f82ff5a commit 50c0252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/public/app/widgets/dialogs/revisions.js
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ export default class RevisionsDialog extends BasicWidget {
}

this.$content.html($table);
} else if (revisionItem.type === 'canvas') {
} else if ([ "canvas", "mindMap" ].includes(revisionItem.type)) {
const encodedTitle = encodeURIComponent(revisionItem.title);

this.$content.html($("<img>")
Expand Down

0 comments on commit 50c0252

Please sign in to comment.