We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5bc311 commit 0298100Copy full SHA for 0298100
extras/configs/panes.top.js
@@ -1,6 +1,25 @@
1
const helpers = require('./helpers.js')
2
3
module.exports = {
4
+ activityLink: (name, icon, tooltip, params = null) => {
5
+ return {
6
+ id: `${name}-activity-action`,
7
+ icon,
8
+ tooltip,
9
+ route: { name: `${name}-activity`, params }
10
+ }
11
+ },
12
+ activityStamp: (name, icon, label) => {
13
14
+ id: `${name}-activity-stamp`,
15
+ component: 'KStamp',
16
17
+ iconSize: 'sm',
18
+ text: label,
19
+ direction: 'horizontal',
20
+ class: 'text-grey-7'
21
22
23
searchText: (options) => {
24
// fields: fields to search on
25
const fields = options?.fields || ['name', 'description']
0 commit comments