Skip to content

Commit

Permalink
Config/default order adjustments.
Browse files Browse the repository at this point in the history
  • Loading branch information
laryn committed Aug 21, 2023
1 parent a0d620e commit b8070bc
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion breakpoints.admin.inc
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ function breakpoints_admin_multiplier_delete_form_submit($form, &$form_state) {
*/
function breakpoints_admin_settings_form($form, &$form_state) {
$form['#config'] = 'breakpoints.settings';
$form['breakpoints_hide_overridden_breakpoints'] = array(
$form['hide_overridden_breakpoints'] = array(
'#type' => 'checkbox',
'#description' => t('When overriding breakpoints defined by a theme, hide them on the overview page'),
'#title' => t('Hide overridden breakpoints'),
Expand Down
8 changes: 4 additions & 4 deletions config/breakpoints.group.core.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"machine_name": "core",
"name": "Core",
"breakpoints": [
"module.breakpoints.small",
"module.breakpoints.medium",
"module.breakpoints.large",
"module.breakpoints.2xlarge",
"module.breakpoints.xlarge",
"module.breakpoints.2xlarge"
"module.breakpoints.large",
"module.breakpoints.medium",
"module.breakpoints.small"
],
"type": "module"
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"source": "breakpoints",
"source_type": "module",
"status": true,
"weight": 3,
"weight": 1,
"multipliers": {
"1x": "1x",
"2x": "2x"
Expand Down
2 changes: 1 addition & 1 deletion config/breakpoints.instance.module.breakpoints.large.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"source": "breakpoints",
"source_type": "module",
"status": true,
"weight": 1,
"weight": 3,
"multipliers": {
"1x": "1x",
"2x": "2x"
Expand Down
2 changes: 1 addition & 1 deletion config/breakpoints.instance.module.breakpoints.medium.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"source": "breakpoints",
"source_type": "module",
"status": true,
"weight": 0,
"weight": 4,
"multipliers": {
"1x": "1x",
"2x": "2x"
Expand Down
2 changes: 1 addition & 1 deletion config/breakpoints.instance.module.breakpoints.small.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"source": "breakpoints",
"source_type": "module",
"status": true,
"weight": 0,
"weight": 5,
"multipliers": {
"1x": "1x",
"2x": "2x"
Expand Down

0 comments on commit b8070bc

Please sign in to comment.