diff options
| author | bobzel <zzzman@gmail.com> | 2021-03-26 13:22:13 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-03-26 13:22:13 -0400 |
| commit | 36028677c61be7ab5937e864e881fa91a3b82d8c (patch) | |
| tree | 63e51ff8283cf269d491bd277b8d403a3ff59474 /src/client/views/SidebarAnnos.tsx | |
| parent | 7878bc22a6dec8bff17f38aa3ffad897babb9e16 (diff) | |
extracted AudioWaveform out of AudioBox in order to use in CollectionStackedTimelineView to share between audioBox and videoBox.
Diffstat (limited to 'src/client/views/SidebarAnnos.tsx')
| -rw-r--r-- | src/client/views/SidebarAnnos.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/SidebarAnnos.tsx b/src/client/views/SidebarAnnos.tsx index 87887483f..6b0b928b3 100644 --- a/src/client/views/SidebarAnnos.tsx +++ b/src/client/views/SidebarAnnos.tsx @@ -79,7 +79,7 @@ export class SidebarAnnos extends React.Component<FieldViewProps & ExtraProps> { sidebarStyleProvider = (doc: Opt<Doc>, props: Opt<FieldViewProps | DocumentViewProps>, property: string) => { if (property === StyleProp.ShowTitle) return StrCast(this.props.layoutDoc["sidebar-childShowTitle"], "title"); - return this.props.styleProvider?.(doc, props, property) + return this.props.styleProvider?.(doc, props, property); } render() { const renderTag = (tag: string) => { |
