add label to editor view manifest

This commit is contained in:
Mads Rasmussen
2022-09-14 14:27:26 +02:00
parent 0d1b4096d2
commit 2ffa9a58bf
3 changed files with 5 additions and 0 deletions

View File

@@ -636,12 +636,15 @@ components:
weight:
type: number
format: float
label:
type: string
icon:
type: string
required:
- editors
- pathname
- weight
- label
- icon
IManifestEditorView:
type: object

View File

@@ -211,6 +211,7 @@ export interface components {
pathname: string;
/** Format: float */
weight: number;
label: string;
icon: string;
};
IManifestEditorView: {

View File

@@ -128,6 +128,7 @@ export interface MetaEditorView {
editors: string[];
pathname: string;
weight: number;
label: string;
icon: string;
}