mirror of
https://github.com/maputnik/editor.git
synced 2026-06-19 13:47:27 +00:00
fix: typos (#1771)
Fix a few typos identified with codespell. ## Launch Checklist - [X] Briefly describe the changes in this PR. - [ ] Link to related issues. - [ ] Write tests for all new functionality. - [ ] Add an entry to `CHANGELOG.md` under the `## main` section.
This commit is contained in:
+2
-2
@@ -20,8 +20,8 @@
|
|||||||
|
|
||||||
- Fixed the Expression editor (for long expressions) being able to be float under other components further down
|
- Fixed the Expression editor (for long expressions) being able to be float under other components further down
|
||||||
- Fixed an issue when clicking on a popup and then clicking on the map again
|
- Fixed an issue when clicking on a popup and then clicking on the map again
|
||||||
- Fix modal close button possition
|
- Fix modal close button position
|
||||||
- Fixed an issue with the generation of tranlations
|
- Fixed an issue with the generation of translations
|
||||||
- Fix missing spec info when clicking next to a property
|
- Fix missing spec info when clicking next to a property
|
||||||
- Fix Firefox open file that stopped working due to react upgrade
|
- Fix Firefox open file that stopped working due to react upgrade
|
||||||
- Fix issue with missing bottom error panel
|
- Fix issue with missing bottom error panel
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ export default class ModalDriver {
|
|||||||
public when = {
|
public when = {
|
||||||
fillLayers: (opts: { type: string; layer?: string; id?: string }) => {
|
fillLayers: (opts: { type: string; layer?: string; id?: string }) => {
|
||||||
// Having logic in test code is an anti pattern.
|
// Having logic in test code is an anti pattern.
|
||||||
// This should be splitted to multiple single responsibility functions
|
// This should be split to multiple single responsibility functions
|
||||||
const type = opts.type;
|
const type = opts.type;
|
||||||
const layer = opts.layer;
|
const layer = opts.layer;
|
||||||
let id;
|
let id;
|
||||||
|
|||||||
@@ -283,7 +283,7 @@ describe("modals", () => {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
it("inlcude API key when change renderer", () => {
|
it("include API key when change renderer", () => {
|
||||||
|
|
||||||
when.click("modal:settings.close-modal");
|
when.click("modal:settings.close-modal");
|
||||||
when.click("nav:open");
|
when.click("nav:open");
|
||||||
|
|||||||
@@ -450,7 +450,7 @@ export default class App extends React.Component<any, AppState> {
|
|||||||
if (message) {
|
if (message) {
|
||||||
try {
|
try {
|
||||||
const objPath = message.split(":")[0];
|
const objPath = message.split(":")[0];
|
||||||
// Errors can be deply nested for example 'layers[0].filter[1][1][0]' we only care upto the property 'layers[0].filter'
|
// Errors can be deeply nested for example 'layers[0].filter[1][1][0]' we only care upto the property 'layers[0].filter'
|
||||||
const unsetPath = objPath.match(/^\S+?\[\d+\]\.[^[]+/)![0];
|
const unsetPath = objPath.match(/^\S+?\[\d+\]\.[^[]+/)![0];
|
||||||
unset(dirtyMapStyle, unsetPath);
|
unset(dirtyMapStyle, unsetPath);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ class FeatureLayerPopup extends React.Component<FeatureLayerPopupProps> {
|
|||||||
// Default color
|
// Default color
|
||||||
return "black";
|
return "black";
|
||||||
}
|
}
|
||||||
// This is quite complex, just incase there's an edgecase we're missing
|
// This is quite complex, just in case there's an edgecase we're missing
|
||||||
// always return black if we get an unexpected error.
|
// always return black if we get an unexpected error.
|
||||||
catch (err) {
|
catch (err) {
|
||||||
console.warn("Unable to get feature color, error:", err);
|
console.warn("Unable to get feature color, error:", err);
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ import { type MappedLayerErrors } from "../libs/definitions";
|
|||||||
|
|
||||||
|
|
||||||
function setStopRefs(props: DataPropertyInternalProps, state: DataPropertyState) {
|
function setStopRefs(props: DataPropertyInternalProps, state: DataPropertyState) {
|
||||||
// This is initialsed below only if required to improved performance.
|
// This is initialised below only if required to improved performance.
|
||||||
let newRefs: {[key: number]: string} | undefined;
|
let newRefs: {[key: number]: string} | undefined;
|
||||||
|
|
||||||
if(props.value && props.value.stops) {
|
if(props.value && props.value.stops) {
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ import { type MappedLayerErrors } from "../libs/definitions";
|
|||||||
* When the stops are reordered the references are also updated (see this.orderStops) this allows React to use the same key for the element and keep keyboard focus.
|
* When the stops are reordered the references are also updated (see this.orderStops) this allows React to use the same key for the element and keep keyboard focus.
|
||||||
*/
|
*/
|
||||||
function setStopRefs(props: ZoomPropertyInternalProps, state: ZoomPropertyState) {
|
function setStopRefs(props: ZoomPropertyInternalProps, state: ZoomPropertyState) {
|
||||||
// This is initialsed below only if required to improved performance.
|
// This is initialised below only if required to improved performance.
|
||||||
let newRefs: {[key: number]: string} = {};
|
let newRefs: {[key: number]: string} = {};
|
||||||
|
|
||||||
if(props.value && (props.value as ZoomWithStops).stops) {
|
if(props.value && (props.value as ZoomWithStops).stops) {
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ export default class LayerWatcher {
|
|||||||
|
|
||||||
// Since we scan over all features we want to avoid this as much as
|
// Since we scan over all features we want to avoid this as much as
|
||||||
// possible and only do it after a batch of data has loaded because
|
// possible and only do it after a batch of data has loaded because
|
||||||
// we only care eventuall about knowing the fields in the vector layers
|
// we only care eventually about knowing the fields in the vector layers
|
||||||
this.throttledAnalyzeVectorLayerFields = throttle(this.analyzeVectorLayerFields, 5000);
|
this.throttledAnalyzeVectorLayerFields = throttle(this.analyzeVectorLayerFields, 5000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -33,7 +33,7 @@
|
|||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
// HACK: Overide
|
// HACK: Override
|
||||||
.maputnik-input-block {
|
.maputnik-input-block {
|
||||||
margin: vars.$margin-2;
|
margin: vars.$margin-2;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user