File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 4
4
padding : 0 ;
5
5
}
6
6
7
+ .crud-mui-action-item : last-child {
8
+ border-right : 0 ;
9
+ padding-right : 0 ;
10
+ }
11
+
12
+
7
13
.crud-mui-action-item {
14
+ cursor : pointer;
8
15
display : inline;
9
16
margin-left : 5px ;
17
+ border-right : 1px solid black;
18
+ padding-right : 5px ;
10
19
}
11
20
12
21
.content-sub-panel {
Original file line number Diff line number Diff line change 18
18
(doall (for [[action-name {:keys [dispatch-fn enabled?]
19
19
:or {enabled? (constantly true )} :as action}] actions]
20
20
^{:key (str resource-name action-name)}
21
- [:li.crud-mui-action-item [:button {:on-click (dispatch-fn resource)
22
- :class " mui-btn mui-btn--primary mui-btn--small"
23
- :disabled (not (enabled? resource))} action-name]]))]))
21
+ [:li.crud-mui-action-item [:a {:on-click (dispatch-fn resource)} action-name]]))]))
24
22
25
23
(defn list [id form view events config]
26
24
(fn []
You can’t perform that action at this time.
0 commit comments