TakePicture bug FIxed

This commit is contained in:
SamSys
2025-02-18 16:25:21 +03:30
parent c17146e1b3
commit e258a0024a

View File

@@ -1328,7 +1328,7 @@ function loadWorkshopSettingList() {
if (response.success) {
var groupOptionsHtml = '<option value="0">انتخاب گروه ...</option>';
responseData.groupSettings.forEach(function (item) {
groupOptionsHtml += `<option value="${item.id}" data-name-group="${item.groupName === `اصلی` ? `بدون گروه` : item.groupName}" ${workshopSettingEmployeeSelecting.name === item.groupName ? 'selected' : ''}>${item.groupName === `اصلی` ? `بدون گروه` : item.groupName}</option>`;
groupOptionsHtml += `<option value="${item.id}" data-name-group="${item.groupName}" ${workshopSettingEmployeeSelecting.name === item.groupName ? 'selected' : ''}>${item.groupName}</option>`;