I'm reporting an issue I encountered with [email protected], cursors does not show up in the Playground, also switching between light / dark theme mode is not work.
apollo-server@ 2.0.0-rc.4, it was working, now it is not, I think the possibility of hardware issue has increased.Hardware info:
馃摴View this screencast to give it a closer look (and repro steps).
I have the same problem in mac 10.13.5 (Intel Iris Graphics 540 1536 MB)
@mikeclymer Thanks.
Let's move to that issue instead.
Can somebody add editor.cursorShape': 'line' to default playground configuration, to solve this?
File: apollo-server/packages/apollo-server-core/src/playground.ts
export const defaultPlaygroundOptions = {
version: playgroundVersion,
settings: {
'general.betaUpdates': false,
'editor.theme': 'dark' as Theme,
'editor.reuseHeaders': true,
'tracing.hideTracingResponse': true,
'editor.fontSize': 14,
'editor.fontFamily': `'Source Code Pro', 'Consolas', 'Inconsolata', 'Droid Sans Mono', 'Monaco', monospace`,
'request.credentials': 'omit',
},
};
As an update, this is fixed in the latest versions of Apollo Server thanks to #1586.
Most helpful comment
Can somebody add
editor.cursorShape': 'line'to default playground configuration, to solve this?File: apollo-server/packages/apollo-server-core/src/playground.ts