File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
frontend/src/features/org Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ export class OrgStatusBanner extends BtrixElement {
261261 } ) ,
262262 } ,
263263 {
264- test : ( ) => ! readOnly && ! ! execMinutesQuotaReached ,
264+ test : ( ) => ! readOnly && ! ! execMinutesQuotaReached && ! subscription ,
265265 content : ( ) => ( {
266266 title : msg (
267267 str `Your org has reached its monthly execution minutes limit` ,
@@ -271,6 +271,18 @@ export class OrgStatusBanner extends BtrixElement {
271271 ) ,
272272 } ) ,
273273 } ,
274+ {
275+ test : ( ) => ! readOnly && ! ! execMinutesQuotaReached && ! ! subscription ,
276+ content : ( ) => ( {
277+ title : msg (
278+ str `Your org has reached its monthly execution minutes limit` ,
279+ ) ,
280+ detail : msg (
281+ html `Purchase additional monthly execution minutes or upgrade your
282+ plan from ${ billingTabLink } .` ,
283+ ) ,
284+ } ) ,
285+ } ,
274286 ] ;
275287 }
276288}
You can’t perform that action at this time.
0 commit comments