diff --git a/console/src/components/Services/Data/TableCommon/Table.scss b/console/src/components/Services/Data/TableCommon/Table.scss index fffcf1f55ad74..a39255034f266 100644 --- a/console/src/components/Services/Data/TableCommon/Table.scss +++ b/console/src/components/Services/Data/TableCommon/Table.scss @@ -19,7 +19,7 @@ width: 100%; .schemaSidebarSection { display: inline-block; - width: 40%; + width: 60%; } } diff --git a/console/src/components/Services/Data/TablePermissions/Permissions.js b/console/src/components/Services/Data/TablePermissions/Permissions.js index 3d35239d5516d..e1561759112d5 100644 --- a/console/src/components/Services/Data/TablePermissions/Permissions.js +++ b/console/src/components/Services/Data/TablePermissions/Permissions.js @@ -253,21 +253,21 @@ class Permissions extends Component { const bulkSelect = permsState.bulkSelect; const currentInputSelection = bulkSelect.filter(e => e === role) .length ? ( - - ) : ( - - ); + + ) : ( + + ); _permissionsRowHtml.push(
@@ -426,17 +426,30 @@ class Permissions extends Component { const getViewPermissionNote = () => { let showNote = false; - if (!(this.state.viewInfo && 'is_insertable_into' in this.state.viewInfo && this.state.viewInfo.is_insertable_into === 'YES') && !(this.state.viewInfo && 'is_updatable' in this.state.viewInfo && this.state.viewInfo.is_updatable === 'YES')) { + if ( + tableType === 'view' && + !( + this.state.viewInfo && + 'is_insertable_into' in this.state.viewInfo && + this.state.viewInfo.is_insertable_into === 'YES' + ) && + !( + this.state.viewInfo && + 'is_updatable' in this.state.viewInfo && + this.state.viewInfo.is_updatable === 'YES' + ) + ) { showNote = true; } return showNote ? (