Fix issues caused to UI after resolving merge conflicts
This commit is contained in:
parent
1f2e0f8dd0
commit
d0f676be09
|
|
@ -9,8 +9,4 @@ indent_size = 2
|
||||||
trim_trailing_whitespace = true
|
trim_trailing_whitespace = true
|
||||||
|
|
||||||
[*.md]
|
[*.md]
|
||||||
<<<<<<< HEAD
|
|
||||||
trim_trailing_whitespace = false
|
trim_trailing_whitespace = false
|
||||||
=======
|
|
||||||
trim_trailing_whitespace = false
|
|
||||||
>>>>>>> dc48b1294cb310d72a1725857b915381f9da8335
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1 @@
|
||||||
<<<<<<< HEAD
|
|
||||||
lts/dubnium
|
lts/dubnium
|
||||||
=======
|
|
||||||
lts/dubnium
|
|
||||||
>>>>>>> dc48b1294cb310d72a1725857b915381f9da8335
|
|
||||||
|
|
|
||||||
|
|
@ -2,9 +2,5 @@ build/
|
||||||
node_modules/
|
node_modules/
|
||||||
package-lock.json
|
package-lock.json
|
||||||
yarn.lock
|
yarn.lock
|
||||||
<<<<<<< HEAD
|
|
||||||
package.json
|
package.json
|
||||||
|
|
||||||
=======
|
|
||||||
package.json
|
|
||||||
>>>>>>> dc48b1294cb310d72a1725857b915381f9da8335
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
"printWidth": 80,
|
"printWidth": 80,
|
||||||
"tabWidth": 2,
|
"tabWidth": 2,
|
||||||
"useTabs": false,
|
"useTabs": false,
|
||||||
|
|
@ -8,13 +7,3 @@
|
||||||
"trailingComma": "all",
|
"trailingComma": "all",
|
||||||
"parser": "typescript"
|
"parser": "typescript"
|
||||||
}
|
}
|
||||||
=======
|
|
||||||
"printWidth": 80,
|
|
||||||
"tabWidth": 2,
|
|
||||||
"useTabs": false,
|
|
||||||
"semi": true,
|
|
||||||
"singleQuote": false,
|
|
||||||
"trailingComma": "all",
|
|
||||||
"parser": "typescript"
|
|
||||||
}
|
|
||||||
>>>>>>> dc48b1294cb310d72a1725857b915381f9da8335
|
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ import { WidgetTypes } from "../constants/WidgetConstants"
|
||||||
import { DraggableWidget } from "../widgets/BaseWidget"
|
import { DraggableWidget } from "../widgets/BaseWidget"
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
export const Container = styled("div")<IContainerProps>`
|
export const Container = styled("div")<ContainerProps>`
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: ${props => {
|
flex-direction: ${props => {
|
||||||
return props.orientation === "HORIZONTAL" ? "row" : "column"
|
return props.orientation === "HORIZONTAL" ? "row" : "column"
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { createReducer } from "../../utils/PicassoUtils"
|
import { createReducer } from "../../utils/AppsmithUtils"
|
||||||
|
|
||||||
const initialState: EditorHeaderReduxState = {}
|
const initialState: EditorHeaderReduxState = {}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { createReducer } from "../../utils/PicassoUtils"
|
import { createReducer } from "../../utils/AppsmithUtils"
|
||||||
import {
|
import {
|
||||||
ActionTypes,
|
ActionTypes,
|
||||||
ReduxAction,
|
ReduxAction,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { createReducer } from "../../utils/PicassoUtils"
|
import { createReducer } from "../../utils/AppsmithUtils"
|
||||||
import {
|
import {
|
||||||
ActionTypes,
|
ActionTypes,
|
||||||
ReduxAction,
|
ReduxAction,
|
||||||
|
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
||||||
import { createReducer } from "../../utils/AppsmithUtils"
|
|
||||||
import {
|
|
||||||
ActionTypes,
|
|
||||||
ReduxAction,
|
|
||||||
LoadWidgetPanePayload
|
|
||||||
} from "../../constants/ActionConstants"
|
|
||||||
import { IWidgetProps } from "../../widgets/BaseWidget";
|
|
||||||
import WidgetPaneResponse from "../../mockResponses/WidgetPaneResponse"
|
|
||||||
|
|
||||||
const initialState: WidgetPaneReduxState = WidgetPaneResponse
|
|
||||||
|
|
||||||
const widgetPaneReducer = createReducer(initialState, {
|
|
||||||
// [ActionTypes.LOAD_CANVAS]: (
|
|
||||||
// state: WidgetPaneReduxState,
|
|
||||||
// action: ReduxAction<LoadWidgetPanePayload>
|
|
||||||
// ) => {
|
|
||||||
// return { widgets: action.payload.widgets }
|
|
||||||
// }
|
|
||||||
})
|
|
||||||
|
|
||||||
export interface WidgetPaneReduxState {
|
|
||||||
widgets: (IWidgetProps | any)[]
|
|
||||||
}
|
|
||||||
|
|
||||||
export default widgetPaneReducer
|
|
||||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user