1
0
Fork 0
mirror of synced 2024-06-30 03:50:37 +12:00

Merge branch 'feat/linked-records-data-source' of github.com:Budibase/budibase into endpoint-renaming

This commit is contained in:
mike12345567 2020-10-13 09:58:31 +01:00
commit a6264896fa
3 changed files with 15 additions and 16 deletions

View file

@ -24,7 +24,6 @@
}
function getPagesAroundCurrent(current, max) {
console.log(current)
const start = Math.max(current - 2, 1)
const end = Math.min(current + 2, max - 2)
let pages = []

View file

@ -305,7 +305,7 @@ export default {
design: { ...all },
settings: [
{
label: "Table",
label: "Data",
key: "datasource",
control: TableViewSelect,
},
@ -587,7 +587,7 @@ export default {
design: { ...all },
settings: [
{
label: "Table",
label: "Data",
key: "datasource",
control: TableViewSelect,
},
@ -659,7 +659,7 @@ export default {
properties: {
settings: [
{
label: "Table",
label: "Data",
key: "datasource",
control: TableViewSelect,
},
@ -753,7 +753,7 @@ export default {
properties: {
settings: [
{
label: "Table",
label: "Data",
key: "datasource",
control: TableViewSelect,
},
@ -867,7 +867,7 @@ export default {
properties: {
settings: [
{
label: "Table",
label: "Data",
key: "datasource",
control: TableViewSelect,
},
@ -970,7 +970,7 @@ export default {
properties: {
settings: [
{
label: "Table",
label: "Data",
key: "datasource",
control: TableViewSelect,
},

View file

@ -1,5 +1,5 @@
const fs = require("fs")
// const sharp = require("sharp")
const sharp = require("sharp")
const fsPromises = fs.promises
const FORMATS = {
@ -7,14 +7,14 @@ const FORMATS = {
}
async function processImage(file) {
// const imgMeta = await sharp(file.path)
// .resize(300)
// .toFile(file.outputPath)
//
// return {
// ...file,
// ...imgMeta,
// }
const imgMeta = await sharp(file.path)
.resize(300)
.toFile(file.outputPath)
return {
...file,
...imgMeta,
}
}
async function process(file) {