Merge branch 'feat/linked-records-data-source' of github.com:Budibase/budibase into endpoint-renaming
This commit is contained in:
commit
ca9012d07d
|
@ -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 = []
|
||||
|
|
|
@ -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,
|
||||
},
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue