diff --git a/.vale.ini b/.vale.ini new file mode 100644 index 00000000000..25353f97023 --- /dev/null +++ b/.vale.ini @@ -0,0 +1,49 @@ +# Vale configuration file, taken from https://errata-ai.github.io/vale/config/ + +# The relative path to the folder containing linting rules (styles) +# ----------------------------------------------------------------- +StylesPath = doc/.linting/vale/styles + +# Minimum alert level +# ------------------- +# The minimum alert level to display (suggestion, warning, or error). +# If integrated into CI, builds fail by default on error-level alerts, +# unless you execute Vale with the --no-exit flag +MinAlertLevel = suggestion + +# Should Vale parse any file formats other than .md files as Markdown? +# -------------------------------------------------------------------- +[formats] +mdx = md + +# What file types should Vale test? +# ---------------------------------- +[*.md] + +# Styles to load +# -------------- +# What styles, located in the StylesPath folder, should Vale load? +# Vale also currently includes write-good, proselint, joblint, and vale +BasedOnStyles = gitlab + +# Enabling or disabling specific rules in a style +# ----------------------------------------------- +# To disable a rule in an enabled style, use the following format: +# {style}.{filename} = NO +# To enable a single rule in a disabled style, use the following format: +# vale.Editorializing = YES + +# Altering the severity of a rule in a style +# ------------------------------------------ +# To change the reporting level (suggestion, warning, error) of a rule, +# use the following format: {style}.{filename} = {level} +# vale.Hedging = error + +# Syntax-specific settings +# ------------------------ +# You can configure specific tests to be enabled, disabled, or report at a +# different level for specific file types. File-type-specific settings added +# here will overwrite any conflicting global settings. +[*.{md,txt}] +# vale.Editorializing = NO + diff --git a/app/assets/javascripts/manual_ordering.js b/app/assets/javascripts/manual_ordering.js index f93dbcd4c47..683fe8b0b14 100644 --- a/app/assets/javascripts/manual_ordering.js +++ b/app/assets/javascripts/manual_ordering.js @@ -29,6 +29,7 @@ const initManualOrdering = (draggableSelector = 'li.issue') => { issueList, getBoardSortableDefaultOptions({ scroll: true, + fallbackTolerance: 1, dataIdAttr: 'data-id', fallbackOnBody: false, group: { diff --git a/app/assets/javascripts/monitoring/components/dashboard.vue b/app/assets/javascripts/monitoring/components/dashboard.vue index 14f39c50a2d..9b9c380c9af 100644 --- a/app/assets/javascripts/monitoring/components/dashboard.vue +++ b/app/assets/javascripts/monitoring/components/dashboard.vue @@ -69,6 +69,11 @@ export default { required: false, default: true, }, + showHeader: { + type: Boolean, + required: false, + default: true, + }, showPanels: { type: Boolean, required: false, @@ -129,7 +134,8 @@ export default { }, environmentsEndpoint: { type: String, - required: true, + required: false, + default: '', }, currentEnvironmentName: { type: String, @@ -356,86 +362,88 @@ export default {