revert unintended code formatting changes

This commit is contained in:
SeinopSys 2021-10-10 01:03:18 +02:00 committed by Luna D
parent a4b85feadc
commit 880d27ac1e
No known key found for this signature in database
GPG key ID: 4B1C63448394F688
2 changed files with 7 additions and 8 deletions

View file

@ -2,10 +2,10 @@
* Functions to execute when the DOM is ready * Functions to execute when the DOM is ready
*/ */
import { whenReady } from './utils/dom'; import { whenReady } from './utils/dom';
import { showOwnedComments } from './communications/comment'; import { showOwnedComments } from './communications/comment';
import { showOwnedPosts } from './communications/post'; import { showOwnedPosts } from './communications/post';
import { listenAutocomplete } from './autocomplete'; import { listenAutocomplete } from './autocomplete';
import { loadBooruData } from './booru'; import { loadBooruData } from './booru';
@ -35,7 +35,7 @@ import { setupToolbar } from './markdowntoolbar';
import { hideStaffTools } from './staffhider'; import { hideStaffTools } from './staffhider';
import { pollOptionCreator } from './poll'; import { pollOptionCreator } from './poll';
import { warnAboutPMs } from './pmwarning'; import { warnAboutPMs } from './pmwarning';
import { imageSourcesCreator } from './sources.js'; import { imageSourcesCreator } from './sources';
whenReady(() => { whenReady(() => {

View file

@ -842,10 +842,9 @@ ALTER SEQUENCE public.image_intensities_id_seq OWNED BY public.image_intensities
-- --
CREATE TABLE public.image_sources( CREATE TABLE public.image_sources(
image_id bigint NOT NULL, image_id bigint NOT NULL,
source character varying(255) NOT NULL, source character varying(255) NOT NULL,
CONSTRAINT image_sources_source_check CHECK (((source)::text ~* '^https?://'::text CONSTRAINT image_sources_source_check CHECK (((source)::text ~* '^https?://'::text))
) )
); );