-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add cancel button for when user entry is being edited #38952
Changes from 3 commits
bcdbaf3
9806b42
d2b2fc3
fc87865
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -221,10 +221,36 @@ | |||
</div> | ||||
|
||||
<div class="userActions"> | ||||
<<<<<<< HEAD | ||||
<UserRowActions v-if="!loading.all" | ||||
:actions="userActions" | ||||
:edit="true" | ||||
@update:edit="toggleEdit" /> | ||||
======= | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Conflict. |
||||
<div v-if="!loading.all" | ||||
class="toggleUserActions"> | ||||
<NcActions> | ||||
<NcActionButton icon="icon-close" | ||||
:title="t('settings', 'Cancel')" | ||||
:aria-label="t('settings', 'Cancel')" | ||||
@click="editing = false" /> | ||||
</NcActions> | ||||
<div v-click-outside="hideMenu" class="userPopoverMenuWrapper"> | ||||
<button class="icon-more" | ||||
:aria-expanded="openedMenu" | ||||
:aria-label="t('settings', 'Toggle user actions menu')" | ||||
@click.prevent="toggleMenu" /> | ||||
<div :class="{ 'open': openedMenu }" class="popovermenu"> | ||||
<NcPopoverMenu :menu="userActions" /> | ||||
</div> | ||||
</div> | ||||
</div> | ||||
<div :style="{opacity: feedbackMessage !== '' ? 1 : 0}" | ||||
class="feedback"> | ||||
<div class="icon-checkmark" /> | ||||
{{ feedbackMessage }} | ||||
</div> | ||||
>>>>>>> 7a2938b01f3 (Add cancel button for when user entry is being edited) | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Merge conflict, and deleting this line is not the solution though you want to work with perhaps your code editor to help you resolve the conflicts. |
||||
</div> | ||||
</div> | ||||
</template> | ||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Another conflict marker