Fix compile

This commit is contained in:
Andras Schmelczer 2026-04-25 20:47:10 +01:00
parent 7a8c497462
commit a5b3cc5f3a
3 changed files with 3 additions and 3 deletions

View file

@ -34,7 +34,7 @@ export function renderCursorsInFileExplorer(
(parent) => {
cursors.forEach((cursor) => {
cursor.documentsWithCursors.forEach((document) => {
if (document.relative_path.startsWith(key)) {
if (document.relativePath.startsWith(key)) {
parent.appendChild(
createSpan({
text: cursor.userName,

View file

@ -61,7 +61,7 @@ export class RemoteCursorsPluginValue implements PluginValue {
return clientCursors.flatMap((cursor) =>
cursor.cursors.map((span) => ({
name: client.userName,
path: cursor.relative_path,
path: cursor.relativePath,
deviceId: client.deviceId,
isOutdated: client.isOutdated,
span: { ...span }

View file

@ -88,7 +88,7 @@ export class StatusDescription {
text: ` and has indexed approximately `
});
container.createSpan({
text: `${this.syncClient.documentCount}`,
text: `${this.syncClient.syncedDocumentCount}`,
cls: "number"
});
container.createSpan({