web/satellite/vuetify-poc: fix visibility of input details

This change resolves an issue that 37a027a introduced wherein each
input component's details area was indiscriminately hidden. Now,
details are only hidden when there is no content to be displayed.

References #6170

Change-Id: I8ccbef3f64a54c400a2a2e9222618eb5015c8dd8
This commit is contained in:
Jeremy Wharton 2023-08-12 22:58:00 -05:00 committed by Storj Robot
parent c08792f066
commit baef654197

View File

@ -74,7 +74,7 @@ export default createVuetify({
defaults: { defaults: {
global: { global: {
// ripple: false, // ripple: false,
hideDetails: true, hideDetails: 'auto',
}, },
VDataTable: { VDataTable: {
fixedHeader: true, fixedHeader: true,