diff --git a/src/components/CallView/shared/LocalAudioControlButton.vue b/src/components/CallView/shared/LocalAudioControlButton.vue
index cb90c5eab81..194c12ab106 100644
--- a/src/components/CallView/shared/LocalAudioControlButton.vue
+++ b/src/components/CallView/shared/LocalAudioControlButton.vue
@@ -20,7 +20,7 @@
@@ -70,16 +69,11 @@ export default {
default: OCP.Accessibility.disableKeyboardShortcuts(),
},
- ncButtonType: {
+ type: {
type: String,
default: 'tertiary-no-background',
},
- color: {
- type: String,
- default: 'currentColor',
- },
-
token: {
type: String,
required: true,
diff --git a/src/components/CallView/shared/LocalVideoControlButton.vue b/src/components/CallView/shared/LocalVideoControlButton.vue
index 5030d372790..d46c465f9fb 100644
--- a/src/components/CallView/shared/LocalVideoControlButton.vue
+++ b/src/components/CallView/shared/LocalVideoControlButton.vue
@@ -20,14 +20,14 @@
-
-
+
+
@@ -68,16 +68,11 @@ export default {
default: OCP.Accessibility.disableKeyboardShortcuts(),
},
- ncButtonType: {
+ type: {
type: String,
default: 'tertiary-no-background',
},
- color: {
- type: String,
- default: 'currentColor',
- },
-
token: {
type: String,
required: true,
diff --git a/src/components/CallView/shared/ViewerOverlayCallView.vue b/src/components/CallView/shared/ViewerOverlayCallView.vue
index 95505abd431..ebeafbc66da 100644
--- a/src/components/CallView/shared/ViewerOverlayCallView.vue
+++ b/src/components/CallView/shared/ViewerOverlayCallView.vue
@@ -106,13 +106,13 @@
:token="token"
:conversation="conversation"
:model="localModel"
- nc-button-type="secondary"
+ type="secondary"
disable-keyboard-shortcuts />
diff --git a/src/components/TopBar/CallButton.vue b/src/components/TopBar/CallButton.vue
index 7f776f3dd71..b9a1f156780 100644
--- a/src/components/TopBar/CallButton.vue
+++ b/src/components/TopBar/CallButton.vue
@@ -51,7 +51,7 @@
@@ -64,7 +64,7 @@
:menu-name="leaveCallCombinedLabel"
force-name
:container="container"
- type="error">
+ :type="isScreensharing ? 'tertiary' : 'error'">
@@ -170,6 +170,11 @@ export default {
type: Boolean,
default: false,
},
+
+ isScreensharing: {
+ type: Boolean,
+ default: false,
+ }
},
setup() {
@@ -446,4 +451,5 @@ export default {
#call_button {
margin: 0 auto;
}
+
diff --git a/src/components/TopBar/ReactionMenu.vue b/src/components/TopBar/ReactionMenu.vue
index c49041b334a..9152f4d0c2d 100644
--- a/src/components/TopBar/ReactionMenu.vue
+++ b/src/components/TopBar/ReactionMenu.vue
@@ -21,12 +21,12 @@
-
+
-
+
+ :start="conversation.callStartTime" />
-
+
{{ participantsInCall }}
-
-
+
@@ -109,7 +103,6 @@
@@ -122,12 +115,11 @@
-
+
@@ -406,7 +398,9 @@ export default {