feat(Settings): Use new form components#3324
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
ba8382e to
bd65fad
Compare
|
/compile / |
bd65fad to
a622270
Compare
| @@ -18,14 +18,16 @@ | |||
| </li> | |||
| </div> | |||
|
|
|||
There was a problem hiding this comment.
Unrelated to the PR but the code above is invalid semantically (and for accessibility) as the li must be in an ol or ul element but is used within a div element.
susnux
left a comment
There was a problem hiding this comment.
As this is using Vue 2 you need to set the legacy prop of the NcAppSettingsDialog to false, so here:
photos/src/components/Settings/SettingsDialog.vue
Lines 7 to 11 in cfd06cd
add :legacy="false"
Signed-off-by: Louis Chmn <[email protected]>
31aeafb to
9bf6684
Compare
|
/compile / |
Signed-off-by: nextcloud-command <[email protected]>
|
Nice, just a small comment: For regular actions (like these two), I'd keep using a full-width
I know this is a bit arbitrary and confusing, sorry! I'm thinking about it and I'll see if we can do something about it. |
|
…for the first one anyway as that is below a list. For the second one, it would probably be a better choice to turn it into a button with info anyway, merging it with the displayed folder above it. Look at Then I'd keep using |
@kra-mo for validation as there were no mockups.
Part of nextcloud/server#55667