Uh oh!
There was an error while loading. Please reload this page.
fix: Use nextcloud-vue components for personal info settings - #43488
Conversation
This comment was marked as resolved.
This comment was marked as resolved.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
ee48e44 to
3894f4aComparesusnux
commented
Feb 10, 2024
Resolved the issue with different input sizes. Needed to refactor all sections to use nextcloud vue inputs. Moreover some other minor issues are now fixed. And everything is CI tested now. |
susnux
commented
Feb 13, 2024
@szaimen I did not change anything on the logic there - I just show an error when there is one. Before it silently failed and did not save anything. (libphonenumber is the dependency we use there). |
szaimen
commented
Feb 13, 2024
Ah I see. Fine then I guess 👍 |
Pytal
left a comment
There was a problem hiding this comment.
Other than minor remarks, code looks good!
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
| <NcActions :aria-label="actionsLabel" @close="showFederationSettings = false"> | ||
| <template v-if="showFederationSettings"> | ||
| <NcActionButton @click="showFederationSettings = false"> |
There was a problem hiding this comment.
nitpick: Isn't the latter @click redundant, due to the parent NcActions having the same effect on close? It can be removed, because the action gets done twice whenever the button is clicked to close.
There was a problem hiding this comment.
No thats two different actions as this is a "submenu".
This one (the button click) is to allow the user to go back in the menu. The close event is to reset the menu to the main menu on close.
…ponents Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
…m handling Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de> Co-authored-by: Pytal <24800714+Pytal@users.noreply.github.com> Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
8eaf83c to
274867fCompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
| <FederationControlActions :additional="additional" | ||
| :additional-value="additionalValue" | ||
| :handle-additional-scope-change="handleAdditionalScopeChange" | ||
| :readable="readable" | ||
| :scope="scope" | ||
| @update:scope="onUpdateScope" /> |
There was a problem hiding this comment.
NcActions doesn't fully support having NcAction* as non-direct children. It breaks a11y fixes for this component from #43098
There was a problem hiding this comment.
Sounds like fixing in components? Can we not provide some registration in actions and inject in NcAction* component to register the different types? So we know for sure which aria role to assign?

Summary
Use our common styles to make the look consistent.
Checklist