Author:
Randy Chan
Changed on:
1 May 2025
Here is the waves screen, which displays two user action buttons:
CREATE WAVE BY EXPIRY
CREATE CUSTOM WAVE
Let's say I would like to hide the CREATE WAVE BY EXPIRY button temporarily but do not wish to update the workflow. This can be achieved by updating the page manifest with `"condition": "{{and false}}",`
1"actions": {
2 "primary": [
3 {
4 "type": "userAction",
5 "label": "i18n:fc.sf.ui.wave.createWave.createWaveByExpiry",
6 "name": "CreateWaveByExpiry",
7 "condition": "{{and false}}",
8 "extensions": {
9 "postSubmit": {
10 "type": "navigate",
11 "link": "/waves/{{wavesInProgress.edges.0.node.id}}"
12 }
13 }
14 }
15 ]
16}