Skip to content

Commit b306297

Browse files
authored
Merge pull request #23 from killbill/kaui_3.11
Added left setting bar
2 parents b4ba85b + 5828fa7 commit b306297

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ source 'https://rubygems.org'
77
# development dependencies will be added by default to the :development group.
88
gemspec
99

10+
# Lock minitest to 5.x until Rails 7.1+ adds Minitest 6.0 support
11+
# Minitest 6.0.0 was released Dec 2024 with breaking API changes
12+
gem 'minitest', '~> 5.0'
13+
1014
# Declare any dependencies that are still in development here instead of in
1115
# your gemspec. These might include edge Rails or gems from your path or
1216
# Git. Remember to move these dependencies to your gemspec before releasing

app/views/avatax/configuration/index.html.erb

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
<div class="kaui-container configuration-index">
2-
<%= render "kaui/components/breadcrumb/breadcrumb" %>
2+
<%= render partial: 'kaui/components/breadcrumb/breadcrumb', locals: {
3+
breadcrumbs: [
4+
{ label: 'Settings', href: '/' },
5+
{ label: "AvaTax", href: '#' }
6+
]
7+
} %>
8+
39
<div class="d-flex" style="gap: 4rem;">
10+
<%= render template: 'kaui/layouts/kaui_setting_sidebar' %>
11+
412
<div class="configuration" style="max-width: 80rem;">
513
<div class="d-flex flex-column">
614
<div class="configuration-header mb-4">

docker/docker-compose.ci.mysql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3.8'
33
services:
44
killbill:
55
network_mode: host
6-
image: killbill/killbill:0.24.0
6+
image: killbill/killbill:0.24.16
77
environment:
88
- KILLBILL_CATALOG_URI=SpyCarAdvanced.xml
99
- KILLBILL_DAO_URL=jdbc:mysql://127.0.0.1:3306/killbill

docker/docker-compose.ci.postgresql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3.8'
33
services:
44
killbill:
55
network_mode: host
6-
image: killbill/killbill:0.24.0
6+
image: killbill/killbill:0.24.16
77
environment:
88
- KILLBILL_CATALOG_URI=SpyCarAdvanced.xml
99
- KILLBILL_DAO_URL=jdbc:postgresql://127.0.0.1:5432/killbill

0 commit comments

Comments
 (0)