3 Commits

Author SHA1 Message Date
Alan Rynne 72f1a836cb bump: 2.18.0 2024-03-14 11:42:49 +01:00
Alan Rynne 0232c91d42 Merge pull request #50 from specklesystems/CNX-9113-Power-BI-Visual-Update-to-use-new-FE2-Terminology
CNX-9113: FE2 -> fixed old naming in visual inputs and error message
2024-03-01 14:29:59 +01:00
Alan Rynne 38b2c55166 fixed old naming in visual inputs and error message 2024-03-01 13:36:36 +01:00
3 changed files with 7 additions and 5 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
{
"dataRoles": [
{
"displayName": "Stream URL",
"displayName": "Model URL",
"kind": "Grouping",
"name": "stream"
},
{
"displayName": "Commit Object ID",
"displayName": "Version Object ID",
"kind": "Grouping",
"name": "parentObject"
},
+1 -1
View File
@@ -4,7 +4,7 @@
"displayName": "Speckle PowerBI Viewer",
"guid": "powerbiSpeckleVisualAA98F06515D847E8ACB33BAB487244E0",
"visualClassName": "Visual",
"version": "2.17.0",
"version": "2.18.0",
"description": "An interactive 3D viewer for Speckle Data",
"supportUrl": "https://speckle.community",
"gitHubUrl": "https://github.com/specklesystems/speckle-powerbi-visuals"
+4 -2
View File
@@ -76,9 +76,11 @@ export class Visual implements IVisual {
console.log('❌Input not valid:', (e as Error).message)
this.host.displayWarningIcon(
`Incomplete data input.`,
`"Stream URL", "Commit Object ID" and "Object ID" data inputs are mandatory. If your data connector does not output all these columns, please update it.`
`"Model URL", "Version Object ID" and "Object ID" data inputs are mandatory. If your data connector does not output all these columns, please update it.`
)
console.warn(
`Incomplete data input. "Model URL", "Version Object ID" and "Object ID" data inputs are mandatory. If your data connector does not output all these columns, please update it.`
)
console.warn(`Incomplete data input. "Stream URL" and "Object ID" data inputs are mandatory`)
store.commit('setStatus', 'incomplete')
return
}