Added forward query component to short URL form

This commit is contained in:
Alejandro Celaya
2021-10-13 22:50:48 +02:00
parent eaa6efe803
commit 9e6907deb4
5 changed files with 60 additions and 34 deletions

View File

@@ -42,6 +42,7 @@ const getInitialState = (shortUrl?: ShortUrl, settings?: ShortUrlCreationSetting
validUntil: shortUrl.meta.validUntil ?? undefined,
maxVisits: shortUrl.meta.maxVisits ?? undefined,
crawlable: shortUrl.crawlable,
forwardQuery: shortUrl.forwardQuery,
validateUrl,
};
};