fix issue with deplot area not showing up

This commit is contained in:
jelveh
2025-08-03 18:24:02 -07:00
committed by Nariman Jelveh
parent 615de5ec11
commit 36a2f2f7b8
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -2608,8 +2608,8 @@ function app_context_menu(app_name, app_title, app_uid) {
{
label: 'Edit',
type: 'primary',
action: () => {
edit_app_section(app_name, 'edit');
action: () => {
edit_app_section(app_name);
},
},
{
+1 -1
View File
@@ -310,7 +310,7 @@ $(document).on('click', '.section-tab-btn', function (e) {
// hide all tabs
$('.section-tab').hide();
// show section
$('.section-tab[data-tab="' + $(this).attr('data-tab') + '"]').show();
$(`.section-tab[data-tab="${$(this).attr('data-tab')}"]`).show();
// remove active class from all tab buttons
$('.section-tab-btn').removeClass('active');
// add active class to clicked tab button