improve responsive layout of search results

This commit is contained in:
Harald Bamberger
2024-11-19 16:16:46 +01:00
parent 9c6509b32a
commit 4e4e8a0a5c
9 changed files with 144 additions and 66 deletions
+10 -2
View File
@@ -15,6 +15,7 @@ const app = Vue.createApp({
return {
searchbaroptions: {
cssclass: "",
calcheightonly: true,
types: [
"mitarbeiter",
"raum",
@@ -75,9 +76,16 @@ const app = Vue.createApp({
},
organisationunit: {
defaultaction: {
type: "function",
type: "link",
renderif: function(data) {
if(data.mailgroup) {
return true;
}
return false;
},
action: function(data) {
alert('organisationunit defaultaction ' + JSON.stringify(data));
const link = 'mailto:' + data.mailgroup;
return link;
}
},
childactions: []