#53 - Add save as template

This commit is contained in:
Elio Struyf
2021-08-09 17:05:40 +02:00
parent 32aa8f4223
commit e194928291
21 changed files with 224 additions and 68 deletions
+3
View File
@@ -4,6 +4,7 @@ import { CommandToCode } from '../CommandToCode';
import { MessageHelper } from '../helper/MessageHelper';
import { Collapsible } from './Collapsible';
import { GlobalSettings } from './GlobalSettings';
import { OtherActions } from './OtherActions';
export interface IBaseViewProps {
settings: PanelSettings | undefined;
@@ -46,6 +47,8 @@ export const BaseView: React.FunctionComponent<IBaseViewProps> = ({settings}: Re
</Collapsible>
)
}
<OtherActions isFile={false} />
</div>
</div>
);