Skip to content
Snippets Groups Projects

Resolve "Support private Git Repositories"

Merged Daniel Göbel requested to merge feature/61-support-private-git-repositories into development
8 files
+ 343
123
Compare changes
  • Side-by-side
  • Inline
Files
8
@@ -256,14 +256,12 @@ onMounted(() => {
@@ -256,14 +256,12 @@ onMounted(() => {
});
});
function fromTimestampChanged(target?: HTMLInputElement | null) {
function fromTimestampChanged(target?: HTMLInputElement | null) {
console.log(target);
permission.from_timestamp = target?.value
permission.from_timestamp = target?.value
? dayjs(target?.value).unix()
? dayjs(target?.value).unix()
: undefined;
: undefined;
}
}
function toTimestampChanged(target?: HTMLInputElement | null) {
function toTimestampChanged(target?: HTMLInputElement | null) {
console.log(target);
permission.to_timestamp = target?.value
permission.to_timestamp = target?.value
? dayjs(target?.value).unix()
? dayjs(target?.value).unix()
: undefined;
: undefined;
Loading