diff options
author | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2024-06-07 19:36:59 -0400 |
---|---|---|
committer | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2024-06-07 19:36:59 -0400 |
commit | 97977e7156eb852c20422fa995bbf96529dfb4e5 (patch) | |
tree | c177a7375f0dbab033f46cceb3e7fe64b4624326 /src/client/views/EditableView.tsx | |
parent | c8dc7104f8a4923bcfc70dcc5ff5f492666487bd (diff) |
sort overhaul for columnheader menu cleanup (sort is now a single action, not a persistent toggle; more like google sheets now)
Diffstat (limited to 'src/client/views/EditableView.tsx')
-rw-r--r-- | src/client/views/EditableView.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client/views/EditableView.tsx b/src/client/views/EditableView.tsx index 5b690bf33..1652e6cd7 100644 --- a/src/client/views/EditableView.tsx +++ b/src/client/views/EditableView.tsx @@ -10,6 +10,7 @@ import { DocumentIconContainer } from './nodes/DocumentIcon'; import { FieldView, FieldViewProps } from './nodes/FieldView'; import { ObservableReactComponent } from './ObservableReactComponent'; import { OverlayView } from './OverlayView'; +import { Padding } from 'browndash-components'; export interface EditableProps { /** @@ -293,10 +294,10 @@ export class EditableView extends ObservableReactComponent<EditableProps> { // eslint-disable-next-line jsx-a11y/no-autofocus /> } else { - toDisplay = (<span + toDisplay = (<span className='editableView-static' style={{ fontStyle: this._props.fontStyle, - fontSize: this._props.fontSize, + fontSize: this._props.fontSize }}> { // eslint-disable-next-line react/jsx-props-no-spreading |