We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b014fd commit 8b9d647Copy full SHA for 8b9d647
src/dashboard/Data/Browser/BrowserToolbar.react.js
@@ -148,11 +148,11 @@ let BrowserToolbar = ({
148
const classSchema = schema.data.get('classes').get(classNameForEditors);
149
if (classSchema) {
150
classSchema.forEach(({ type, targetClass }, col) => {
151
- if (name === 'objectId' || isUnique && name !== uniqueField) {
+ if (col === 'objectId' || isUnique && col !== uniqueField) {
152
return;
153
}
154
if (targetClass === '_User') {
155
- userPointers.push(name);
+ userPointers.push(col);
156
157
schemaSimplifiedData[col] = {
158
type,
0 commit comments