Fix table schema validation

This commit is contained in:
1ilit 2023-10-22 09:01:43 +03:00
parent b41942c794
commit f4bee4de5b
3 changed files with 4 additions and 2 deletions

View File

@ -667,6 +667,9 @@ export default function ControlPanel(props) {
"New window": { "New window": {
function: () => {}, function: () => {},
}, },
Open: {
function: () => {},
},
Save: { Save: {
function: () => {}, function: () => {},
}, },

View File

@ -35,7 +35,7 @@ export default function Issues() {
overflowCount={99} overflowCount={99}
className="mt-1" className="mt-1"
> >
<div className="pe-3"> <div className="pe-3 select-none">
<i className="fa-solid fa-triangle-exclamation me-2 text-yellow-500"></i> <i className="fa-solid fa-triangle-exclamation me-2 text-yellow-500"></i>
Issues Issues
</div> </div>

View File

@ -32,7 +32,6 @@ const tableSchema = {
"notNull", "notNull",
"increment", "increment",
"comment", "comment",
"length",
], ],
}, },
}, },