Skip to content

Commit

Permalink
Fix li css in markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Tideman committed Nov 20, 2024
1 parent 4d08dec commit eeb50ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lib/services/workflow-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ export const fetchInitialValuesForStartWorkflow = async ({
let details = '';
if (workflow.details) {
const decodedDetails = await decodeSingleReadablePayloadWithCodec(
workflow.summary,
workflow.details,
);
if (typeof decodedDetails === 'string') {
details = decodedDetails;
Expand Down
3 changes: 1 addition & 2 deletions src/markdown.reset.css
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,11 @@ table {

ul,
ol {
list-style: none;
white-space: normal;
}

li {
list-style: inside;
list-style-position: inside;
}

li * {
Expand Down

0 comments on commit eeb50ac

Please sign in to comment.