Skip to content

Commit 9c88ec0

Browse files
committed
fix(form): typo in css
1 parent bffbcbf commit 9c88ec0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

css/styles.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1053,12 +1053,12 @@ span.fc_list_icon {
10531053

10541054

10551055
/* Active / inactive light for forms */
1056-
.plugin-forcreator-active {
1056+
.plugin-formcreator-active {
10571057
cursor: pointer;
10581058
color: #009933;
10591059
}
10601060

1061-
.plugin-forcreator-inactive {
1061+
.plugin-formcreator-inactive {
10621062
cursor: pointer;
10631063
color: #a0a0a0;
10641064
}

inc/form.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -366,11 +366,11 @@ public static function getSpecificValueToDisplay($field, $values, array $options
366366
case 'is_active':
367367
if ($values[$field] == 0) {
368368
$faIcon = 'far fa-circle';
369-
$class = "plugin-forcreator-inactive";
369+
$class = "plugin-formcreator-inactive";
370370
$title = __('Inactive');
371371
} else {
372372
$faIcon = 'fa fa-circle';
373-
$class = "plugin-forcreator-active";
373+
$class = "plugin-formcreator-active";
374374
$title = __('Active');
375375
}
376376
if (isset($options['raw_data']['id'])) {

0 commit comments

Comments
 (0)