stable

Clone or download

Read-only

fix: Correct management of value formats

For each of the available text field format: text, html, markdown: Given the value is "See art #1" Then: ➡️ In readonly mode, art #1 is a link and has Tuleap tooltip ➡️ In edit mode, art #1 is not a link Part of story #37543: edit Artidoc sections Change-Id: I40fe80b487477aa288bef507b981c7643c12c46c

Modified Files

Name
M plugins/artidoc/scripts/artidoc/package.json +2 −0 Go to diff View file
M plugins/artidoc/scripts/artidoc/pnpm-lock.yaml +16 −0 Go to diff View file
M plugins/artidoc/scripts/artidoc/src/components/SectionContent.vue +14 −3 Go to diff View file
M plugins/artidoc/scripts/artidoc/src/components/SectionDescription.test.ts +2 −1 Go to diff View file
M plugins/artidoc/scripts/artidoc/src/components/SectionDescription.vue +5 −4 Go to diff View file
M plugins/artidoc/scripts/artidoc/src/components/description/SectionDescriptionReadOnly.test.ts +1 −1 Go to diff View file
M plugins/artidoc/scripts/artidoc/src/components/description/SectionDescriptionReadOnly.vue +2 −2 Go to diff View file
M plugins/artidoc/scripts/artidoc/src/composables/useSectionEditor.test.ts +71 −0 Go to diff View file
M plugins/artidoc/scripts/artidoc/src/composables/useSectionEditor.ts +33 −2 Go to diff View file
M plugins/artidoc/scripts/artidoc/src/helpers/artidoc-section.type.ts +2 −1 Go to diff View file