Эх сурвалжийг харах

HUE-8155 [metastore] Fix issue that prevents inline editing of descriptions in the tables list

Johan Ahlen 7 жил өмнө
parent
commit
289145a7df

+ 2 - 1
desktop/core/src/desktop/templates/ko_components/ko_catalog_entries_table.mako

@@ -395,10 +395,11 @@ from desktop.views import _ko
                 sampleEnrichedEntry.showContextPopover(sampleEnrichedEntry, event);
               }
             };
-            var onRowClick = function (sampleEnrichedEntry, event) {;
+            var onRowClick = function (sampleEnrichedEntry, event) {
               if (self.selectedEntries && $(event.target).is('td')) {
                $(event.currentTarget).find('.hue-checkbox').trigger('click');
               }
+              return true;
             };
             var childPromise = self.catalogEntry.getChildren({ silenceErrors: true, cancellable: true }).done(function (childEntries) {
               var entries = $.map(childEntries, function (entry, index) { return new SampleEnrichedEntry(index, entry, onClick, onRowClick) });