Skip to content

Commit

Permalink
ui
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanminutillo committed Jan 10, 2025
1 parent 1abd4f0 commit 6dc59c0
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 23 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/watch-repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,22 +195,13 @@ jobs:
echo "API Response:"
echo "$response" | jq '.'
# Check response format
if ! echo "$response" | jq -e '.totalFiles' > /dev/null 2>&1; then
echo "::error::Invalid response format - missing totalFiles"
exit 1
fi
# Parse and display results
total_files=$(echo "$response" | jq -r '.totalFiles')
processed=$(echo "$response" | jq -r '.processed')
errors=$(echo "$response" | jq -r '.errors')
skipped=$(echo "$response" | jq -r '.skipped')
total_chunks=$(echo "$response" | jq -r '.totalChunks')
echo "Repository ingestion summary:"
echo "- Total files: $total_files"
echo "- Processed: $processed"
echo "- Errors: $errors"
echo "- Skipped: $skipped"
Expand Down
2 changes: 1 addition & 1 deletion lib/web/components/acls/edit_acl_live.sface
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<label tabindex="0" class="rounded btn btn-square btn-ghost btn-sm">
<#Icon solid="DotsVertical" class="w-4 h-4" />
</label>
<ul tabindex="0" class="w-48 p-1 rounded shadow dropdown-content menu menu-compact bg-base-200">
<ul tabindex="0" class="w-48 p-1 rounded shadow dropdown-content menu menu-sm bg-base-200">
{!-- <li :if={!@setting_boundaries}>
<Bonfire.UI.Boundaries.Web.AclModalLive
subject_id={subject_id}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
tabindex="0"
role="menu"
aria-orientation="vertical"
class="!block mt-1 menu-compact rounded-lg shadow dropdown_actions w-64 menu dropdown-content bg-base-200"
class="!block mt-1 menu-sm rounded-lg shadow dropdown_actions w-64 menu dropdown-content bg-base-200"
>
<li data-role="edit_circle_name" class="edit_name">
<Bonfire.UI.Common.OpenModalLive
Expand Down
2 changes: 1 addition & 1 deletion lib/web/components/display/boundary_details_live.sface
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
<label tabindex="0" class="rounded btn btn-square btn-ghost btn-sm">
<#Icon solid="DotsVertical" class="w-4 h-4" />
</label>
<ul tabindex="0" class="w-48 p-1 rounded shadow dropdown-content menu menu-compact bg-base-200">
<ul tabindex="0" class="w-48 p-1 rounded shadow dropdown-content menu menu-sm bg-base-200">
<li data-role="remove_from_boundary">
<Bonfire.UI.Common.OpenModalLive
id={"remove_acl_#{id(acl)}"}
Expand Down
12 changes: 6 additions & 6 deletions lib/web/components/sidebar/instance_sidebar_nav_live.sface
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<LinkLive
to={~p"/boundaries/scope/instance/circles"}
class={
"!px-4 !py-2",
" ",
"bg-base-content/10": @selected_tab == "circles"
}
>
Expand All @@ -15,7 +15,7 @@
<LinkLive
to={~p"/boundaries/scope/instance/roles"}
class={
"!px-4 !py-2",
" ",
"bg-base-content/10 ": @selected_tab == "roles"
}
>
Expand All @@ -28,7 +28,7 @@
<LinkLive
to={~p"/boundaries/scope/instance/acls"}
class={
"!px-4 !py-2",
" ",
"bg-base-content/10": @selected_tab == "acls"
}
>
Expand All @@ -40,7 +40,7 @@
<LinkLive
to={~p"/boundaries/scope/instance/instance_acl"}
class={
"!px-4 !py-2",
" ",
"bg-base-content/10": @selected_tab == "instance_acl"
}
>
Expand All @@ -52,7 +52,7 @@
<LinkLive
to={~p"/boundaries/scope/instance/admin_circle"}
class={
"!px-4 !py-2",
" ",
"bg-base-content/10": @selected_tab == "admin_circle"
}
>
Expand All @@ -64,7 +64,7 @@
<LinkLive
to={~p"/boundaries/scope/instance/mod_circle"}
class={
"!px-4 !py-2",
" ",
"bg-base-content/10": @selected_tab == "mod_circle"
}
>
Expand Down
8 changes: 4 additions & 4 deletions lib/web/components/sidebar/sidebar_nav_live.sface
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<LinkLive
to={~p"/boundaries/circles"}
class={
"!px-4 !py-2",
" ",
"bg-base-content/10 ": @selected_tab == "circles"
}
>
Expand All @@ -15,7 +15,7 @@
<LinkLive
to={~p"/boundaries/roles"}
class={
"!px-4 !py-2",
" ",
"bg-base-content/10 ": @selected_tab == "roles"
}
>
Expand All @@ -27,7 +27,7 @@
<LinkLive
to={~p"/boundaries/instance_roles"}
class={
"!px-4 !py-2",
" ",
"bg-base-content/10 ": @selected_tab == "instance_roles"
}
>
Expand All @@ -52,7 +52,7 @@
<LinkLive
to={~p"/boundaries/acls"}
class={
"!px-4 !py-2",
" ",
"bg-base-content/10 ": @selected_tab == "acls"
}
>
Expand Down

0 comments on commit 6dc59c0

Please sign in to comment.