add dragging to step list

This commit is contained in:
Anika Raemer 2025-10-11 12:08:56 +02:00
parent 646bd573cf
commit 575eecfc69
13 changed files with 406 additions and 60 deletions

View file

@ -3,5 +3,10 @@
*/
export interface InstructionStepModel{
id?: string;
/**
* Unique id required for sorting via drag & drop
* Local to the frontend!
*/
internalId: string;
text: string;
}