diff options
author | monikahedman <monika_hedman@brown.edu> | 2019-08-26 09:56:12 -0400 |
---|---|---|
committer | monikahedman <monika_hedman@brown.edu> | 2019-08-26 09:56:12 -0400 |
commit | a085e811d0b1332619ae9117a4dbf13316a82730 (patch) | |
tree | 528479d5a9868f50544cc765b2f3acd8187935b5 /src/client/util/TooltipTextMenu.tsx | |
parent | ee5f4ad5348f10d9e76eaf2962295a6968e7a4d0 (diff) | |
parent | 939074601016a674d6a01922bab1383684fce63f (diff) |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web into monika_linking
Diffstat (limited to 'src/client/util/TooltipTextMenu.tsx')
-rw-r--r-- | src/client/util/TooltipTextMenu.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/util/TooltipTextMenu.tsx b/src/client/util/TooltipTextMenu.tsx index 4672dd246..7a0c6f8c5 100644 --- a/src/client/util/TooltipTextMenu.tsx +++ b/src/client/util/TooltipTextMenu.tsx @@ -172,6 +172,9 @@ export class TooltipTextMenu { this.listTypeToIcon = new Map(); this.listTypeToIcon.set(schema.nodes.bullet_list, ":"); this.listTypeToIcon.set(schema.nodes.ordered_list, "1)"); + this.listTypeToIcon.set(schema.nodes.alphabet_list, "a)"); + this.listTypeToIcon.set(schema.nodes.cap_alphabet_list, "A)"); + this.listTypeToIcon.set(schema.nodes.roman_list, "i."); // this.listTypeToIcon.set(schema.nodes.bullet_list, "⬜"); this.listTypes = Array.from(this.listTypeToIcon.keys()); |