Skip to content

Commit a226887

Browse files
committed
lint
1 parent 03342d2 commit a226887

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dashboard/Data/Views/EditViewDialog.react.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ export default class EditViewDialog extends React.Component {
2020
constructor(props) {
2121
super();
2222
const view = props.view || {};
23-
23+
2424
// Determine data source type based on existing view properties
2525
let dataSourceType = 'query'; // default
2626
if (view.cloudFunction) {
2727
dataSourceType = 'cloudFunction';
2828
} else if (view.query && Array.isArray(view.query) && view.query.length > 0) {
2929
dataSourceType = 'query';
3030
}
31-
31+
3232
this.state = {
3333
name: view.name || '',
3434
className: view.className || '',

0 commit comments

Comments
 (0)