mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 03:57:52 +00:00
Add team option in bulk actions (#5885)
This commit is contained in:
15
app/javascript/dashboard/mixins/bulkActionsMixin.js
Normal file
15
app/javascript/dashboard/mixins/bulkActionsMixin.js
Normal file
@@ -0,0 +1,15 @@
|
||||
export default {
|
||||
props: {
|
||||
trianglePosition: {
|
||||
type: String,
|
||||
default: '0',
|
||||
},
|
||||
},
|
||||
computed: {
|
||||
cssVars() {
|
||||
return {
|
||||
'--triangle-position': this.trianglePosition + 'rem',
|
||||
};
|
||||
},
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user