mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-27 13:47:58 +01:00
revert unintended code formatting changes
This commit is contained in:
parent
a4b85feadc
commit
880d27ac1e
2 changed files with 7 additions and 8 deletions
|
@ -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(() => {
|
||||||
|
|
||||||
|
|
|
@ -844,8 +844,7 @@ 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))
|
||||||
) )
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue