mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 08:12:15 +00:00
- user subscribe deletion
- fixes
This commit is contained in:
11
resources/js/helpers/functionHelpers.js
vendored
11
resources/js/helpers/functionHelpers.js
vendored
@@ -329,7 +329,7 @@ const FunctionHelpers = {
|
||||
}[driver]
|
||||
}
|
||||
|
||||
Vue.prototype.getSubscriptionStatusColor = function (status) {
|
||||
Vue.prototype.$getSubscriptionStatusColor = function (status) {
|
||||
|
||||
return {
|
||||
'active': 'green',
|
||||
@@ -338,6 +338,15 @@ const FunctionHelpers = {
|
||||
}[status]
|
||||
}
|
||||
|
||||
Vue.prototype.$getTransactionStatusColor = function (status) {
|
||||
|
||||
return {
|
||||
'completed': 'green',
|
||||
'cancelled': 'yellow',
|
||||
'error': 'red',
|
||||
}[status]
|
||||
}
|
||||
|
||||
Vue.prototype.$goToFileView = function (id) {
|
||||
|
||||
let locations = {
|
||||
|
||||
Reference in New Issue
Block a user