Skip to content
This repository was archived by the owner on Jan 6, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/sidebar/app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ import Panel from './components/Panel';
import '../static/scss/styles.scss';

// Initialize theming
import './theme.js';
import './utils/theme.js';

ReactDOM.render(<Panel />, document.getElementById('notes'));
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from 'react';

import { getPadStats, customizeEditor, insertSelectedText } from '../../editor';
import { getPadStats, customizeEditor, insertSelectedText } from '../utils/editor';

import INITIAL_CONFIG from './data/config';
import INITIAL_CONTENT from './data/initialContent';
import INITIAL_CONFIG from '../data/editorConfig';
import INITIAL_CONTENT from '../data/initialContent';

class Editor extends React.Component {
constructor(props) {
Expand Down
8 changes: 4 additions & 4 deletions src/sidebar/app/components/Footer.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React from 'react';
import classNames from 'classnames';

import SyncIcon from './icons/SyncIcon';
import SyncIcon from './SyncIcon';

import { formatFooterTime } from '../utils';
import { SURVEY_PATH } from '../constants';
import INITIAL_CONTENT from './editor/data/initialContent';
import { formatFooterTime } from '../utils/utils';
import { SURVEY_PATH } from '../utils/constants';
import INITIAL_CONTENT from '../data/initialContent';


const STATES = {
Expand Down
2 changes: 1 addition & 1 deletion src/sidebar/app/components/Panel.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable react/jsx-key */
import React from 'react';

import Editor from './editor/Editor';
import Editor from './Editor';
import Footer from './Footer';

class Panel extends React.Component {
Expand Down
File renamed without changes.
File renamed without changes.