diff options
author | bobzel <zzzman@gmail.com> | 2021-08-06 10:34:57 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-08-06 10:34:57 -0400 |
commit | d756ffd3daa24270361648454062e98f190ae964 (patch) | |
tree | 483340406733fd34ff0a92115e7936ef28e2366c /src/fields/Doc.ts | |
parent | b25921a0cbdb431726e7089fabdd08fe43c6b3de (diff) |
fixed webboxes so that you can link to an annotation and it will restore the url as well. a bunch of warnings cleanup.
Diffstat (limited to 'src/fields/Doc.ts')
-rw-r--r-- | src/fields/Doc.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fields/Doc.ts b/src/fields/Doc.ts index 6dcf34a3a..0cbfaf067 100644 --- a/src/fields/Doc.ts +++ b/src/fields/Doc.ts @@ -1214,7 +1214,7 @@ export namespace Doc { case DocumentType.RTF: return "sticky-note"; case DocumentType.COL: const folder: IconProp = isOpen ? "folder-open" : "folder"; - const chevron: IconProp = isOpen ? "chevron-down" : "chevron-right" + const chevron: IconProp = isOpen ? "chevron-down" : "chevron-right"; return !doc?.isFolder ? folder : chevron; case DocumentType.WEB: return "globe-asia"; case DocumentType.SCREENSHOT: return "photo-video"; |