Merge branch 'better-spellchecking' into 'v3'
Add spellchecking for camelCase, PascalCase, and kebab-case See merge request openflexure/openflexure-microscope-server!502
This commit is contained in:
commit
f5c907e62d
9 changed files with 40 additions and 8 deletions
|
|
@ -340,7 +340,7 @@ export default {
|
|||
newValue = Math.min(newValue, this.maximum);
|
||||
}
|
||||
|
||||
// If mulipleOf is validated on server then enforce it.
|
||||
// If multipleOf is validated on server then enforce it.
|
||||
if (multipleOf) {
|
||||
newValue = Math.round(newValue / multipleOf) * multipleOf;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import appSettings from "./displaySetttingsComponents/appSettings.vue";
|
||||
import streamSettings from "./displaySetttingsComponents/streamSettings.vue";
|
||||
import appSettings from "./displaySettingsComponents/appSettings.vue";
|
||||
import streamSettings from "./displaySettingsComponents/streamSettings.vue";
|
||||
|
||||
// Export main app
|
||||
export default {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue