feat(LOY-135): change redeem description to be RTE

This commit is contained in:
Christian Andolf
2025-02-14 16:37:56 +01:00
parent 9b61417264
commit a192d32f7e
5 changed files with 236 additions and 31 deletions

View File

@@ -66,9 +66,11 @@ function extractPossibleAttributes(attrs: Attributes | undefined) {
props.className = attrs["class-name"]
} else if (attrs.classname) {
props.className = attrs.classname
} else if (attrs?.style?.["text-align"]) {
}
if (attrs.style?.["text-align"]) {
props.style = {
textAlign: attrs?.style?.["text-align"],
textAlign: attrs.style["text-align"],
}
}