Skip to content

Commit e6b2282

Browse files
authoredMar 11, 2025
[FIX] Update AWS Connect UI and version bump (#717)
* feat(webapp): Update AWS Connect UI and version bump - Refactor AWS Connect component to use Box with space-y-7 class - Bump webapp version to 1.38.0 * fix(webapp): Add overflow-auto to AWS Connect panel for better scrolling
1 parent 4c6a143 commit e6b2282

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎webapp/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webapp",
3-
"version": "1.37.10",
3+
"version": "1.38.0",
44
"scripts": {
55
"ancient": "clojure -Sdeps '{:deps {com.github.liquidz/antq {:mvn/version \"RELEASE\"}}}' -m antq.core",
66
"genversion": "npx genversion src/webapp/version.js",

‎webapp/src/webapp/app.cljs

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@
206206

207207
(defmethod routes/panels :integrations-aws-connect-panel []
208208
[layout :application-hoop
209-
[:div {:class "flex flex-col bg-gray-100 px-4 py-10 sm:px-6 lg:px-20 lg:pt-16 lg:pb-10 h-full"}
209+
[:div {:class "flex flex-col bg-gray-100 px-4 py-10 sm:px-6 lg:px-20 lg:pt-16 lg:pb-10 overflow-auto h-full"}
210210
[routes/wrap-admin-only
211211
[:<>
212212
[h/h2 "AWS Connect" {:class "mb-6"}]

‎webapp/src/webapp/integrations/aws_connect.cljs

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@
209209

210210
:reagent-render
211211
(fn []
212-
[:> Flex {:direction "column" :align "start" :gap "6" :width "100%" :height "100%"}
212+
[:> Box {:class "space-y-7"}
213213
[aws-connect-button]
214214
[jobs-table-component]])}))
215215

0 commit comments

Comments
 (0)
Failed to load comments.