Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/views/kaui/components/button/_button.html.erb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<%#
This is a placeholder breadcrumb component for standalone gem usage.
This is a placeholder button component for standalone gem usage.

This placeholder prevents "missing template" errors when running
the gem independently during development or testing.
%>

<!-- Breadcrumb placeholder for standalone gem -->
<!-- Button placeholder for standalone gem -->
4 changes: 2 additions & 2 deletions app/views/kaui/layouts/kaui_setting_sidebar.html.erb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<%#
This is a placeholder breadcrumb component for standalone gem usage.
This is a placeholder sidebar component for standalone gem usage.

This placeholder prevents "missing template" errors when running
the gem independently during development or testing.
%>

<!-- Breadcrumb placeholder for standalone gem -->
<!-- Sidebar placeholder for standalone gem -->
10 changes: 4 additions & 6 deletions app/views/kpm/nodes_info/_nodes_table.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,10 @@
<% end %>
<div>
<b>Dependencies</b>
<p>
<div>API: <%= node_info.api_version %></div>
<div>Plugin API: <%= node_info.plugin_api_version %></div>
<div>Platform: <%= node_info.platform_version %></div>
<div>Commons: <%= node_info.common_version %></div>
</p>
<p>API: <%= node_info.api_version %></p>
<p>Plugin API: <%= node_info.plugin_api_version %></p>
<p>Platform: <%= node_info.platform_version %></p>
<p>Commons: <%= node_info.common_version %></p>
</div>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions app/views/kpm/nodes_info/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
const $link = $(this);
const $pluginContainer = $link.closest('.official-plugin');

$('.plugin-link').removeAttr('data-remote data-method href');
$('.plugin-link').removeAttr('data-remote').removeAttr('data-method').removeAttr('href');
$(this).children().addClass('fa-spin');

$(this).addClass('loading');
Expand All @@ -112,7 +112,7 @@
});

<% if @installing %>
$('.plugin-link').removeAttr('data-remote data-method href');
$('.plugin-link').removeAttr('data-remote').removeAttr('data-method').removeAttr('href');
$('#nodes-table-wrapper').css({ opacity: 0.5 });
$('#install-in-progress').show();
$('#install-in-progress').children().addClass('fa-spin');
Expand Down
Loading