Skip to content

Commit

Permalink
Merge pull request #35063 from dimagi/ad/turn-on-custom-repeat-text-v…
Browse files Browse the repository at this point in the history
…ellum

Turn on custom button text for versions > 2.55
  • Loading branch information
AddisonDunn authored Sep 4, 2024
2 parents ec6c7ac + 6739078 commit b39e56b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions corehq/apps/app_manager/views/formdesigner.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import json
import logging
from looseversion import LooseVersion

from django.conf import settings
from django.contrib import messages
Expand Down Expand Up @@ -326,6 +327,7 @@ def _get_vellum_features(request, domain, app):
'sorted_itemsets': app.enable_sorted_itemsets,
'advanced_itemsets': add_ons.show("advanced_itemsets", request, app),
'markdown_tables': app.enable_markdown_tables,
'use_custom_repeat_button_text': app.build_version >= LooseVersion('2.55'),
})
return vellum_features

Expand Down

0 comments on commit b39e56b

Please sign in to comment.