stable

Clone or download

Read-only

Save text fields as text format

Given the semantic title is set to a Text field, When I update a card in the taskboard, Then the value should be saved as TEXT format, not HTML. No change for semantic title set to a String field. Part of: story #13629: Update the title semantic of a card Change-Id: I45e4e33567e1a93033aa5453856411df87ef42a0

Modified Files

Name
A plugins/taskboard/include/Tracker/TitleFieldPresenter.php +41 −0 Go to diff View file
M plugins/taskboard/include/Tracker/TrackerPresenter.php +8 −7 Go to diff View file
M plugins/taskboard/include/Tracker/TrackerPresenterCollectionBuilder.php +5 −5 Go to diff View file
M plugins/taskboard/phpunit/Board/BoardPresenterTest.php +5 −1 Go to diff View file
M plugins/taskboard/phpunit/Tracker/TrackerPresenterCollectionBuilderTest.php +41 −27 Go to diff View file
M plugins/taskboard/scripts/taskboard/index.ts +2 −2 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Body/Swimlane/Card/BaseCard.test.ts +8 −9 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Body/Swimlane/Card/BaseCard.vue +5 −6 Go to diff View file
A plugins/taskboard/scripts/taskboard/src/helpers/update-artifact.test.ts +66 −0 Go to diff View file
A plugins/taskboard/scripts/taskboard/src/helpers/update-artifact.ts +50 −0 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/getters.ts +2 −2 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/swimlane/card/card-actions.test.ts +7 −7 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/swimlane/card/card-actions.ts +4 −10 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/swimlane/card/card-mutations.test.ts +3 −4 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/swimlane/card/card-mutations.ts +2 −2 Go to diff View file
A plugins/taskboard/scripts/taskboard/src/store/swimlane/card/put-artifact-type.ts +37 −0 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/swimlane/card/type.ts +2 −3 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/type.ts +1 −11 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/type.ts +11 −0 Go to diff View file