[UPDT] BASE : Company leave label updation in the creation and updation form

This commit is contained in:
Horilla
2024-09-23 17:13:54 +05:30
parent c769a432f3
commit 153243004c
2 changed files with 14 additions and 0 deletions

View File

@@ -54,3 +54,10 @@
</div>
</form>
</div>
<script>
var week_select = $('#id_based_on_week');
week_select.find('option').filter(function() {
return $(this).text() === '---------';
}).text('All');
</script>

View File

@@ -56,3 +56,10 @@
</div>
</form>
</div>
<script>
var week_select = $('#id_based_on_week');
week_select.find('option').filter(function() {
return $(this).text() === '---------';
}).text('All');
</script>