text
stringlengths
1
2.83M
id
stringlengths
16
152
metadata
dict
__index_level_0__
int64
0
949
import { TabList, Tab } from '@reach/tabs' import PropTypes from 'prop-types' export default function SymbolPaletteTabs({ categories }) { return ( <TabList aria-label="Symbol Categories" className="symbol-palette-tab-list"> {categories.map(category => ( <Tab key={category.id} className="symbol-pale...
overleaf/web/frontend/js/features/symbol-palette/components/symbol-palette-tabs.js/0
{ "file_path": "overleaf/web/frontend/js/features/symbol-palette/components/symbol-palette-tabs.js", "repo_id": "overleaf", "token_count": 238 }
523
import App from '../../../base' export default App.controller( 'BinaryFileController', function ($scope, $rootScope, $http, $timeout, $element, ide, waitFor) { const MAX_FILE_SIZE = 2 * 1024 * 1024 const MAX_URL_LENGTH = 60 const FRONT_OF_URL_LENGTH = 35 const FILLER = '...' const TAIL_OF_URL_L...
overleaf/web/frontend/js/ide/binary-files/controllers/BinaryFileController.js/0
{ "file_path": "overleaf/web/frontend/js/ide/binary-files/controllers/BinaryFileController.js", "repo_id": "overleaf", "token_count": 2515 }
524
import _ from 'lodash' /* eslint-disable camelcase, node/handle-callback-err, max-len, no-return-assign, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns ...
overleaf/web/frontend/js/ide/editor/EditorManager.js/0
{ "file_path": "overleaf/web/frontend/js/ide/editor/EditorManager.js", "repo_id": "overleaf", "token_count": 6237 }
525
import _ from 'lodash' /* eslint-disable max-len, no-cond-assign, no-unused-vars, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * DS207: Consider short...
overleaf/web/frontend/js/ide/editor/directives/aceEditor/metadata/MetadataManager.js/0
{ "file_path": "overleaf/web/frontend/js/ide/editor/directives/aceEditor/metadata/MetadataManager.js", "repo_id": "overleaf", "token_count": 1277 }
526
import _ from 'lodash' import App from '../../../base' export default App.factory('files', function (ide) { const Files = { getTeXFiles() { const texFiles = [] ide.fileTreeManager.forEachEntity(function (entity, _folder, path) { if ( entity.type === 'doc' && /.*\.(tex|md|t...
overleaf/web/frontend/js/ide/files/services/files.js/0
{ "file_path": "overleaf/web/frontend/js/ide/files/services/files.js", "repo_id": "overleaf", "token_count": 249 }
527
/* eslint-disable max-len, no-return-assign, camelcase, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * Full docs: https://github.com/decaffeinate/deca...
overleaf/web/frontend/js/ide/history/controllers/HistoryV2ToolbarController.js/0
{ "file_path": "overleaf/web/frontend/js/ide/history/controllers/HistoryV2ToolbarController.js", "repo_id": "overleaf", "token_count": 1563 }
528
import { v4 as uuid } from 'uuid' import { sendMB } from '../../../infrastructure/event-tracking' // VERSION should get incremented when making changes to caching behavior or // adjusting metrics collection. // Keep in sync with the service worker. const VERSION = 2 const pdfJsMetrics = { version: VERSION, id: u...
overleaf/web/frontend/js/ide/pdf/controllers/PdfJsMetrics.js/0
{ "file_path": "overleaf/web/frontend/js/ide/pdf/controllers/PdfJsMetrics.js", "repo_id": "overleaf", "token_count": 1057 }
529
// TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. import './controllers/ReviewPanelController' import './controllers/TrackChangesUpgradeModalController' import './controllers/BulkActionsModalController' import './directives/reviewPanelSorted' import './directives/reviewPan...
overleaf/web/frontend/js/ide/review-panel/ReviewPanelManager.js/0
{ "file_path": "overleaf/web/frontend/js/ide/review-panel/ReviewPanelManager.js", "repo_id": "overleaf", "token_count": 219 }
530
// TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md */ import App from '../../../...
overleaf/web/frontend/js/ide/review-panel/filters/orderOverviewEntries.js/0
{ "file_path": "overleaf/web/frontend/js/ide/review-panel/filters/orderOverviewEntries.js", "repo_id": "overleaf", "token_count": 235 }
531
/* eslint-disable max-len, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions...
overleaf/web/frontend/js/main.js/0
{ "file_path": "overleaf/web/frontend/js/main.js", "repo_id": "overleaf", "token_count": 761 }
532
import _ from 'lodash' import App from '../base' import '../directives/mathjax' import '../services/algolia-search' App.controller( 'SearchWikiController', function ($scope, algoliaSearch, $modal) { $scope.hits = [] $scope.hits_total = 0 $scope.config_hits_per_page = 20 $scope.processingSearch = fal...
overleaf/web/frontend/js/main/learn.js/0
{ "file_path": "overleaf/web/frontend/js/main/learn.js", "repo_id": "overleaf", "token_count": 1253 }
533
import App from '../../base' export default App.controller( 'UpgradeSubscriptionController', function ($scope, eventTracking) { $scope.upgradeSubscription = function () { eventTracking.send('subscription-funnel', 'subscription-page', 'upgrade') eventTracking.sendMB('subscription-page-upgrade-button...
overleaf/web/frontend/js/main/subscription/upgrade-subscription.js/0
{ "file_path": "overleaf/web/frontend/js/main/subscription/upgrade-subscription.js", "repo_id": "overleaf", "token_count": 114 }
534
import { OverlayTrigger, Tooltip } from 'react-bootstrap' import PropTypes from 'prop-types' export default function BetaBadge({ tooltip, url = '/beta/participate' }) { return ( <OverlayTrigger placement={tooltip.placement || 'bottom'} overlay={<Tooltip id={tooltip.id}>{tooltip.text}</Tooltip>} ...
overleaf/web/frontend/js/shared/components/beta-badge.js/0
{ "file_path": "overleaf/web/frontend/js/shared/components/beta-badge.js", "repo_id": "overleaf", "token_count": 323 }
535
import { useCallback, useEffect, useState } from 'react' import PropTypes from 'prop-types' import _ from 'lodash' import { useIdeContext } from '../ide-context' /** * Binds a property in an Angular scope making it accessible in a React * component. The interface is compatible with React.useState(), including * the...
overleaf/web/frontend/js/shared/context/util/scope-value-hook.js/0
{ "file_path": "overleaf/web/frontend/js/shared/context/util/scope-value-hook.js", "repo_id": "overleaf", "token_count": 447 }
536
/* * Copyright 2013 Ivan Pusic * Contributors: * Matjaz Lipus */ //https://github.com/ivpusic/angular-cookie/blob/master/angular-cookie.js angular.module('ivpusic.cookie', ['ipCookie']); angular.module('ipCookie', ['ng']). factory('ipCookie', ['$document', function ($document) { 'use strict'; return (...
overleaf/web/frontend/js/vendor/libs/angular-cookie.js/0
{ "file_path": "overleaf/web/frontend/js/vendor/libs/angular-cookie.js", "repo_id": "overleaf", "token_count": 1749 }
537
From 6d118ec35e6e6f954938a485178748f1bb8bdd8a Mon Sep 17 00:00:00 2001 From: Jakob Ackermann <jakob.ackermann@overleaf.com> Date: Mon, 5 Jul 2021 17:28:00 +0100 Subject: [PATCH 2/2] [misc] do not bundle NodeJS stream backend --- src/pdf.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/...
overleaf/web/frontend/js/vendor/libs/pdfjs-dist/patches/0002-misc-do-not-bundle-NodeJS-stream-backend.patch/0
{ "file_path": "overleaf/web/frontend/js/vendor/libs/pdfjs-dist/patches/0002-misc-do-not-bundle-NodeJS-stream-backend.patch", "repo_id": "overleaf", "token_count": 418 }
538
import { ContextRoot } from '../js/shared/context/root-context' import FileView from '../js/features/file-view/components/file-view' import useFetchMock from './hooks/use-fetch-mock' const bodies = { latex: `\\documentclass{article} \\begin{document} First document. This is a simple example, with no extra parameters...
overleaf/web/frontend/stories/file-view.stories.js/0
{ "file_path": "overleaf/web/frontend/stories/file-view.stories.js", "repo_id": "overleaf", "token_count": 2512 }
539
import Pagination from '../js/shared/components/pagination' export const Interactive = args => { return <Pagination {...args} /> } export default { title: 'Pagination', component: Pagination, args: { currentPage: 1, totalPages: 10, handlePageClick: () => {}, }, argTypes: { currentPage: { c...
overleaf/web/frontend/stories/pagination.stories.js/0
{ "file_path": "overleaf/web/frontend/stories/pagination.stories.js", "repo_id": "overleaf", "token_count": 156 }
540
.system-message { padding: (@line-height-computed / 4) (@line-height-computed / 2); background-color: @sys-msg-background; color: @sys-msg-color; border-bottom: @sys-msg-border; a { color: @sidebar-link-color; text-decoration: underline; } } .system-message .close { color: #fff; opacity: 1; t...
overleaf/web/frontend/stylesheets/app/base.less/0
{ "file_path": "overleaf/web/frontend/stylesheets/app/base.less", "repo_id": "overleaf", "token_count": 1646 }
541
.logs-pane { .full-size; top: @pdf-top-offset; overflow-y: auto; background-color: @logs-pane-bg; } .logs-pane-content { display: flex; flex-direction: column; padding: @padding-sm; min-height: 100%; } .logs-pane-actions { display: flex; justify-content: flex-end; padding: @padding-sm 0; flex-...
overleaf/web/frontend/stylesheets/app/editor/logs.less/0
{ "file_path": "overleaf/web/frontend/stylesheets/app/editor/logs.less", "repo_id": "overleaf", "token_count": 1723 }
542
.v2-import__img { .img-responsive; .center-block; width: 80%; }
overleaf/web/frontend/stylesheets/app/import.less/0
{ "file_path": "overleaf/web/frontend/stylesheets/app/import.less", "repo_id": "overleaf", "token_count": 31 }
543
@rfp-h1-size: 2.442em; @rfp-h2-size: 1.953em; @rfp-h3-size: 1.563em; @rfp-lead-size: 1.25em; @rfp-sl-red: @red; @rfp-rp-blue: @rp-type-blue; @rfp-rp-blue-light: #f8f9fd; @rfp-rp-blue-dark: shade(@rfp-rp-blue, 50%); @rfp-rp-blue-darker: shade(@rfp-rp-blue, 65%); @rfp-rp-blue-darkest: shade(@rfp-rp-blue, 75%); @rfp-ca...
overleaf/web/frontend/stylesheets/app/review-features-page.less/0
{ "file_path": "overleaf/web/frontend/stylesheets/app/review-features-page.less", "repo_id": "overleaf", "token_count": 4060 }
544
// // Close icons // -------------------------------------------------- .close { float: right; font-size: (@font-size-base * 1.5); font-weight: @close-font-weight; line-height: 1; color: @close-color; text-shadow: @close-text-shadow; .opacity(0.4); &:hover, &:focus { color: @close-color; tex...
overleaf/web/frontend/stylesheets/components/close.less/0
{ "file_path": "overleaf/web/frontend/stylesheets/components/close.less", "repo_id": "overleaf", "token_count": 242 }
545
// // Jumbotron // -------------------------------------------------- .jumbotron { padding: @jumbotron-padding; margin-bottom: @jumbotron-padding; color: @jumbotron-color; background-color: @jumbotron-bg; h1, .h1 { color: @jumbotron-heading-color; } p { margin-bottom: (@jumbotron-padding / 2);...
overleaf/web/frontend/stylesheets/components/jumbotron.less/0
{ "file_path": "overleaf/web/frontend/stylesheets/components/jumbotron.less", "repo_id": "overleaf", "token_count": 368 }
546
// // Popovers // -------------------------------------------------- .popover { position: absolute; top: 0; left: 0; z-index: @zindex-popover; display: none; max-width: @popover-max-width; padding: 1px; text-align: left; // Reset given new insertion method background-color: @popover-bg; background-...
overleaf/web/frontend/stylesheets/components/popovers.less/0
{ "file_path": "overleaf/web/frontend/stylesheets/components/popovers.less", "repo_id": "overleaf", "token_count": 1418 }
547
// Styleguide colors @ol-green: #138a07; @ol-dark-green: #004a0e; @ol-blue: #3e70bb; @ol-dark-blue: #2857a1; @ol-red: #c9453e; @ol-dark-red: #a6312b; @ol-type-color: @ol-blue-gray-3; // Sidebar @sidebar-bg: #fff; @sidebar-color: @ol-blue-gray-2; @sidebar-active-bg: @ol-green; @sidebar-active-color: #fff; @sidebar-hov...
overleaf/web/frontend/stylesheets/core/ol-light-variables.less/0
{ "file_path": "overleaf/web/frontend/stylesheets/core/ol-light-variables.less", "repo_id": "overleaf", "token_count": 2036 }
548
/*! * ui-select * http://github.com/angular-ui/ui-select * Version: 0.19.7 - 2017-04-15T14:28:36.790Z * License: MIT */ /* Style when highlighting a search. */ .ui-select-highlight { font-weight: bold; } .ui-select-offscreen { clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important...
overleaf/web/frontend/stylesheets/vendor/select/select.css/0
{ "file_path": "overleaf/web/frontend/stylesheets/vendor/select/select.css", "repo_id": "overleaf", "token_count": 3361 }
549
{ "ask_proj_owner_to_upgrade_for_full_history": "Vraag de projecteigenaar om te upgraden om toegang te krijgen tot de volledige geschiedenis van dit project.", "archive_projects": "Archiveer projecten", "archive_and_leave_projects": "Archiveer en verlaat projecten", "about_to_archive_projects": "Je staat op het...
overleaf/web/locales/nl.json/0
{ "file_path": "overleaf/web/locales/nl.json", "repo_id": "overleaf", "token_count": 21345 }
550
/* eslint-disable no-unused-vars */ const Helpers = require('./lib/helpers') exports.tags = ['server-ce', 'server-pro', 'saas'] const indexes = [ { key: { project_id: 1, }, name: 'project_id_1', }, { key: { ts: 1, }, name: 'ts_1', expireAfterSeconds: 2592000, }, ] exp...
overleaf/web/migrations/20190912145007_create_docSnapshots_indexes.js/0
{ "file_path": "overleaf/web/migrations/20190912145007_create_docSnapshots_indexes.js", "repo_id": "overleaf", "token_count": 274 }
551
/* eslint-disable no-unused-vars */ const Helpers = require('./lib/helpers') exports.tags = ['server-ce', 'server-pro', 'saas'] const indexes = [ { key: { expires: 1, }, name: 'expires_1', expireAfterSeconds: 10, }, { key: { projectId: 1, }, name: 'projectId_1', }, ] ...
overleaf/web/migrations/20190912145023_create_projectInvites_indexes.js/0
{ "file_path": "overleaf/web/migrations/20190912145023_create_projectInvites_indexes.js", "repo_id": "overleaf", "token_count": 271 }
552
/* eslint-disable no-unused-vars */ const Helpers = require('./lib/helpers') exports.tags = ['server-ce', 'server-pro', 'saas'] exports.migrate = async client => { const { db } = client // deletedUsers did not have an index before await Helpers.dropIndexesFromCollection(db.deletedProjects, [ { key: {...
overleaf/web/migrations/20200210121103_uniqueify-deletedthings-indexes.js/0
{ "file_path": "overleaf/web/migrations/20200210121103_uniqueify-deletedthings-indexes.js", "repo_id": "overleaf", "token_count": 710 }
553
const Path = require('path') const { addCollection, waitForDb, db, } = require('../../app/src/infrastructure/mongodb') class Adapter { constructor(params) { if ( !process.env.SKIP_TAG_CHECK && !process.argv.includes('create') && !(process.argv.includes('-t') || process.argv.includes('--ta...
overleaf/web/migrations/lib/adapter.js/0
{ "file_path": "overleaf/web/migrations/lib/adapter.js", "repo_id": "overleaf", "token_count": 488 }
554
const { waitForDb } = require('../../../app/src/infrastructure/mongodb') waitForDb() .then(() => { console.error('Mongodb is up.') process.exit(0) }) .catch(err => { console.error('Cannot connect to mongodb.') console.error(err) process.exit(1) })
overleaf/web/modules/server-ce-scripts/scripts/check-mongodb.js/0
{ "file_path": "overleaf/web/modules/server-ce-scripts/scripts/check-mongodb.js", "repo_id": "overleaf", "token_count": 116 }
555
const minimist = require('minimist') const { batchedUpdateWithResultHandling } = require('./helpers/batchedUpdate') const argv = minimist(process.argv.slice(2)) const commit = argv.commit !== undefined if (!commit) { console.error('DOING DRY RUN. TO SAVE CHANGES PASS --commit') process.exit(1) } batchedUpdateWit...
overleaf/web/scripts/backfill_project_image_name.js/0
{ "file_path": "overleaf/web/scripts/backfill_project_image_name.js", "repo_id": "overleaf", "token_count": 158 }
556
const VERBOSE_LOGGING = process.env.VERBOSE_LOGGING === 'true' const VERBOSE_PROJECT_NAMES = process.env.VERBOSE_PROJECT_NAMES === 'true' const WRITE_CONCURRENCY = parseInt(process.env.WRITE_CONCURRENCY, 10) || 5 const BATCH_SIZE = parseInt(process.env.BATCH_SIZE, 10) || 100 // persist fallback in order to keep batched...
overleaf/web/scripts/history/convert_all_projects_to_full_project_history.js/0
{ "file_path": "overleaf/web/scripts/history/convert_all_projects_to_full_project_history.js", "repo_id": "overleaf", "token_count": 2898 }
557
const { waitForDb } = require('../app/src/infrastructure/mongodb') const minimist = require('minimist') const InstitutionsManager = require('../app/src/Features/Institutions/InstitutionsManager') const institutionId = parseInt(process.argv[2]) if (isNaN(institutionId)) throw new Error('No institution id') console.log(...
overleaf/web/scripts/refresh_institution_users.js/0
{ "file_path": "overleaf/web/scripts/refresh_institution_users.js", "repo_id": "overleaf", "token_count": 398 }
558
'use strict' /** * Checks that all institutional sso provider certs are still current with the * data provided by the ukamf export file. * * Run with: node check-certs /path/ukamf.xml * * The ukamf metadata xml file can be downloaded from: * http://metadata.ukfederation.org.uk/ */ const { Certificate } = ...
overleaf/web/scripts/ukamf/check-certs.js/0
{ "file_path": "overleaf/web/scripts/ukamf/check-certs.js", "repo_id": "overleaf", "token_count": 1160 }
559
const { expect } = require('chai') const async = require('async') const User = require('./helpers/User') const request = require('./helpers/request') const settings = require('@overleaf/settings') const expectErrorResponse = require('./helpers/expectErrorResponse') function tryReadAccess(user, projectId, test, callba...
overleaf/web/test/acceptance/src/AuthorizationTests.js/0
{ "file_path": "overleaf/web/test/acceptance/src/AuthorizationTests.js", "repo_id": "overleaf", "token_count": 7049 }
560
const { expect } = require('chai') const { ObjectId: NativeObjectId } = require('mongodb') const { ObjectId: MongooseObjectId } = require('mongoose').mongo const { User: UserModel } = require('../../../app/src/models/User') const { db } = require('../../../app/src/infrastructure/mongodb') const { normalizeQuery, ...
overleaf/web/test/acceptance/src/MongoHelper.js/0
{ "file_path": "overleaf/web/test/acceptance/src/MongoHelper.js", "repo_id": "overleaf", "token_count": 2375 }
561
/* eslint-disable node/handle-callback-err, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * Full docs: https://github.com/decaffeinate/decaffeinate/blob/master...
overleaf/web/test/acceptance/src/SettingsTests.js/0
{ "file_path": "overleaf/web/test/acceptance/src/SettingsTests.js", "repo_id": "overleaf", "token_count": 492 }
562
const { db, ObjectId } = require('../../../../app/src/infrastructure/mongodb') const { expect } = require('chai') const SubscriptionUpdater = require('../../../../app/src/Features/Subscription/SubscriptionUpdater') const SubscriptionModel = require('../../../../app/src/models/Subscription') .Subscription const Delete...
overleaf/web/test/acceptance/src/helpers/Subscription.js/0
{ "file_path": "overleaf/web/test/acceptance/src/helpers/Subscription.js", "repo_id": "overleaf", "token_count": 1140 }
563
const AbstractMockApi = require('./AbstractMockApi') const _ = require('lodash') const { ObjectId } = require('mongodb') class MockProjectHistoryApi extends AbstractMockApi { reset() { this.docs = {} this.oldFiles = {} this.projectVersions = {} this.labels = {} this.projectSnapshots = {} this...
overleaf/web/test/acceptance/src/mocks/MockProjectHistoryApi.js/0
{ "file_path": "overleaf/web/test/acceptance/src/mocks/MockProjectHistoryApi.js", "repo_id": "overleaf", "token_count": 1615 }
564
import { expect } from 'chai' import sinon from 'sinon' import { fireEvent, render, screen } from '@testing-library/react' import ProjectNameEditableLabel from '../../../../../frontend/js/features/editor-navigation-toolbar/components/project-name-editable-label' describe('<ProjectNameEditableLabel />', function () { ...
overleaf/web/test/frontend/features/editor-navigation-toolbar/components/project-name-editable-label.test.js/0
{ "file_path": "overleaf/web/test/frontend/features/editor-navigation-toolbar/components/project-name-editable-label.test.js", "repo_id": "overleaf", "token_count": 920 }
565
import { expect } from 'chai' import sinon from 'sinon' import { screen, fireEvent } from '@testing-library/react' import fetchMock from 'fetch-mock' import MockedSocket from 'socket.io-mock' import { renderWithEditorContext, cleanUpContext, } from '../../../helpers/render-with-context' import FileTreeRoot from '....
overleaf/web/test/frontend/features/file-tree/flows/rename-entity.test.js/0
{ "file_path": "overleaf/web/test/frontend/features/file-tree/flows/rename-entity.test.js", "repo_id": "overleaf", "token_count": 2385 }
566
import { screen, fireEvent } from '@testing-library/react' import PreviewLogsPane from '../../../../../frontend/js/features/preview/components/preview-logs-pane' import sinon from 'sinon' import { renderWithEditorContext } from '../../../helpers/render-with-context' const { expect } = require('chai') describe('<Previ...
overleaf/web/test/frontend/features/preview/components/preview-logs-pane.test.js/0
{ "file_path": "overleaf/web/test/frontend/features/preview/components/preview-logs-pane.test.js", "repo_id": "overleaf", "token_count": 2707 }
567
import fetchMock from 'fetch-mock' import { expect } from 'chai' import React from 'react' import { render, waitFor } from '@testing-library/react' import useAbortController from '../../../../frontend/js/shared/hooks/use-abort-controller' import { getJSON } from '../../../../frontend/js/infrastructure/fetch-json' desc...
overleaf/web/test/frontend/shared/hooks/use-abort-controller.test.js/0
{ "file_path": "overleaf/web/test/frontend/shared/hooks/use-abort-controller.test.js", "repo_id": "overleaf", "token_count": 852 }
568
const OError = require('@overleaf/o-error') class SmokeTestFailure extends OError {} module.exports = { SmokeTestFailure, }
overleaf/web/test/smoke/src/support/Errors.js/0
{ "file_path": "overleaf/web/test/smoke/src/support/Errors.js", "repo_id": "overleaf", "token_count": 41 }
569
const sinon = require('sinon') const { expect } = require('chai') const SandboxedModule = require('sandboxed-module') const { ObjectId } = require('mongodb') const Errors = require('../../../../app/src/Features/Errors/Errors') const MockRequest = require('../helpers/MockRequest') const MockResponse = require('../helper...
overleaf/web/test/unit/src/Collaborators/CollaboratorsControllerTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Collaborators/CollaboratorsControllerTests.js", "repo_id": "overleaf", "token_count": 3832 }
570
/* eslint-disable max-len, no-return-assign, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * Full docs: https://github.com/decaffeinate/decaffeinate/blob/m...
overleaf/web/test/unit/src/Docstore/DocstoreManagerTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Docstore/DocstoreManagerTests.js", "repo_id": "overleaf", "token_count": 9254 }
571
/* eslint-disable camelcase, max-len, no-return-assign, no-unused-vars, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * Full docs: https://github.c...
overleaf/web/test/unit/src/Exports/ExportsHandlerTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Exports/ExportsHandlerTests.js", "repo_id": "overleaf", "token_count": 10609 }
572
const SandboxedModule = require('sandboxed-module') const { expect } = require('chai') const sinon = require('sinon') const modulePath = require('path').join( __dirname, '../../../../app/src/Features/Institutions/InstitutionsGetter.js' ) describe('InstitutionsGetter', function () { beforeEach(function () { t...
overleaf/web/test/unit/src/Institutions/InstitutionsGetterTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Institutions/InstitutionsGetterTests.js", "repo_id": "overleaf", "token_count": 1228 }
573
const modulePath = '../../../../app/src/Features/Project/ProjectDeleter' const SandboxedModule = require('sandboxed-module') const sinon = require('sinon') const { expect } = require('chai') const tk = require('timekeeper') const moment = require('moment') const { Project } = require('../helpers/models/Project') const ...
overleaf/web/test/unit/src/Project/ProjectDeleterTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Project/ProjectDeleterTests.js", "repo_id": "overleaf", "token_count": 12191 }
574
const SandboxedModule = require('sandboxed-module') const sinon = require('sinon') const modulePath = require('path').join( __dirname, '../../../../app/src/Features/Referal/ReferalAllocator.js' ) describe('ReferalAllocator', function () { beforeEach(function () { this.ReferalAllocator = SandboxedModule.requi...
overleaf/web/test/unit/src/Referal/ReferalAllocatorTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Referal/ReferalAllocatorTests.js", "repo_id": "overleaf", "token_count": 1952 }
575
const SandboxedModule = require('sandboxed-module') const { assert, expect } = require('chai') const sinon = require('sinon') const modulePath = '../../../../app/src/Features/Subscription/FeaturesUpdater' const { ObjectId } = require('mongodb') describe('FeaturesUpdater', function () { beforeEach(function () { t...
overleaf/web/test/unit/src/Subscription/FeaturesUpdaterTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Subscription/FeaturesUpdaterTests.js", "repo_id": "overleaf", "token_count": 7382 }
576
/* eslint-disable max-len, no-return-assign, no-unused-vars, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * Full docs: https://github.com/decaffeinate...
overleaf/web/test/unit/src/SystemMessages/SystemMessageManagerTests.js/0
{ "file_path": "overleaf/web/test/unit/src/SystemMessages/SystemMessageManagerTests.js", "repo_id": "overleaf", "token_count": 679 }
577
const { ObjectId } = require('mongodb') const sinon = require('sinon') const { expect } = require('chai') const SandboxedModule = require('sandboxed-module') const Errors = require('../../../../app/src/Features/Errors/Errors') const modulePath = '../../../../app/src/Features/User/SAMLIdentityManager.js' describe('SAML...
overleaf/web/test/unit/src/User/SAMLIdentityManagerTests.js/0
{ "file_path": "overleaf/web/test/unit/src/User/SAMLIdentityManagerTests.js", "repo_id": "overleaf", "token_count": 9136 }
578
const SandboxedModule = require('sandboxed-module') const path = require('path') const sinon = require('sinon') const modulePath = path.join( __dirname, '../../../../app/src/Features/User/UserUpdater' ) const tk = require('timekeeper') const { expect } = require('chai') const { normalizeQuery } = require('../../../...
overleaf/web/test/unit/src/User/UserUpdaterTests.js/0
{ "file_path": "overleaf/web/test/unit/src/User/UserUpdaterTests.js", "repo_id": "overleaf", "token_count": 12137 }
579
const mockModel = require('../MockModel') module.exports = mockModel('Tag')
overleaf/web/test/unit/src/helpers/models/Tag.js/0
{ "file_path": "overleaf/web/test/unit/src/helpers/models/Tag.js", "repo_id": "overleaf", "token_count": 24 }
580
const fs = require('fs') const path = require('path') const webpack = require('webpack') const CopyPlugin = require('copy-webpack-plugin') const ManifestPlugin = require('webpack-manifest-plugin') const MiniCssExtractPlugin = require('mini-css-extract-plugin') const PackageVersions = require('./app/src/infrastructure/...
overleaf/web/webpack.config.js/0
{ "file_path": "overleaf/web/webpack.config.js", "repo_id": "overleaf", "token_count": 4236 }
581
{ "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[vue]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "edit...
owncloud/web/.vscode/settings.json/0
{ "file_path": "owncloud/web/.vscode/settings.json", "repo_id": "owncloud", "token_count": 292 }
582
Change: Bring new modal component We've updated our modal component with a new one coming from ODS. https://github.com/owncloud/web/issues/2263 https://github.com/owncloud/web/pull/3378
owncloud/web/changelog/0.11.0_2020-06-26/bring-new-modal-component/0
{ "file_path": "owncloud/web/changelog/0.11.0_2020-06-26/bring-new-modal-component", "repo_id": "owncloud", "token_count": 59 }
583
Bugfix: Public upload now keeps modified time The public upload for public links now keeps the modification time of local files. This aligns the behavior with non-public file upload. https://github.com/owncloud/web/pull/3686
owncloud/web/changelog/0.11.1_2020-06-29/public-link-keep-mtime/0
{ "file_path": "owncloud/web/changelog/0.11.1_2020-06-29/public-link-keep-mtime", "repo_id": "owncloud", "token_count": 57 }
584
Change: Provide option for hiding the search bar We introduced a new `options.hideSearchBar` config variable which can be used to disable the search bar entirely. https://github.com/owncloud/product/issues/116 https://github.com/owncloud/web/pull/3817
owncloud/web/changelog/0.14.0_2020-08-17/hide-search.md/0
{ "file_path": "owncloud/web/changelog/0.14.0_2020-08-17/hide-search.md", "repo_id": "owncloud", "token_count": 68 }
585
Change: More descriptive loading state When browsing the different variations of the files list we removed the loader component at the top in favor of a spinner in the center of the viewport. The spinner has one line of text which describes what kind of data is being loaded. https://github.com/owncloud/web/pull/4099
owncloud/web/changelog/0.17.0_2020-09-25/files-list-loader/0
{ "file_path": "owncloud/web/changelog/0.17.0_2020-09-25/files-list-loader", "repo_id": "owncloud", "token_count": 75 }
586
Bugfix: OIDC logout We've fixed the bug that the user sometimes got immediately logged back into the web UI after clicking on logout. https://github.com/owncloud/product/issues/266 https://github.com/owncloud/web/pull/4211
owncloud/web/changelog/0.21.0_2020-10-21/fix-logout/0
{ "file_path": "owncloud/web/changelog/0.21.0_2020-10-21/fix-logout", "repo_id": "owncloud", "token_count": 65 }
587
Enhancement: Add custom icons in the new file menu We've added an option to display own icon in the new file menu. https://github.com/owncloud/web/pull/4375
owncloud/web/changelog/0.26.0_2020-11-23/new-file-icon/0
{ "file_path": "owncloud/web/changelog/0.26.0_2020-11-23/new-file-icon", "repo_id": "owncloud", "token_count": 47 }
588
Enhancement: Add theme option to disable default files list status indicators We've added the option into the theme to disable default files list status indicators. https://github.com/owncloud/web/issues/2895 https://github.com/owncloud/web/pull/2928
owncloud/web/changelog/0.3.0_2020-01-31/2895-2/0
{ "file_path": "owncloud/web/changelog/0.3.0_2020-01-31/2895-2", "repo_id": "owncloud", "token_count": 66 }
589
Bugfix: Properly manage escaping of all translations We've stopped escaping translations which contained resource names or user names because they can contain special characters which were then not properly displayed. We've done this only with translations which are using mustache syntax which does escaping on its own...
owncloud/web/changelog/0.4.0_2020-02-14/3032/0
{ "file_path": "owncloud/web/changelog/0.4.0_2020-02-14/3032", "repo_id": "owncloud", "token_count": 97 }
590
Bugfix: Changed share icons to collaborators icons Adjust icon in files app navigation bar and also in the file actions dropdown to use the group icon. https://github.com/owncloud/web/pull/3116
owncloud/web/changelog/0.6.0_2020-03-16/3116/0
{ "file_path": "owncloud/web/changelog/0.6.0_2020-03-16/3116", "repo_id": "owncloud", "token_count": 51 }
591
Bugfix: fix oidc redirect after logout After the logout the idp sent a redirect to `<redirectUri>?state=` which was then redirected to `<redirectUri>?state=#/login` by web. Having the query parameters in between broke the application. To prevent the whole login url `<baseUrl>#/login` should be sent then the query par...
owncloud/web/changelog/0.8.0_2020-04-14/3291/0
{ "file_path": "owncloud/web/changelog/0.8.0_2020-04-14/3291", "repo_id": "owncloud", "token_count": 115 }
592
Enhancement: Add support for .vsdx files in the draw.io app Added the support to open .vsdx files (Microsoft Visio Files) directly from OwnCloud, instead of creating a new diagram to import the file from local storage. https://github.com/owncloud/phoenix/pull/4337 https://github.com/owncloud/phoenix/issues/4327
owncloud/web/changelog/1.0.0_2020-12-16/drawio-vsdx-support/0
{ "file_path": "owncloud/web/changelog/1.0.0_2020-12-16/drawio-vsdx-support", "repo_id": "owncloud", "token_count": 91 }
593
Change: Update ODS to 2.1.2 We updated the ownCloud Design System to 2.1.2. See the linked releases for details. https://github.com/owncloud/web/pull/4594 https://github.com/owncloud/owncloud-design-system/releases/tag/v2.1.0 https://github.com/owncloud/owncloud-design-system/releases/tag/v2.1.1 https://github.com/ow...
owncloud/web/changelog/2.0.0_2021-02-16/update-ods-2.1.2/0
{ "file_path": "owncloud/web/changelog/2.0.0_2021-02-16/update-ods-2.1.2", "repo_id": "owncloud", "token_count": 136 }
594
Change: New files list We integrated the new oc-table-files component from our design system. This includes breaking changes in how we load resources in our files app. We refactored our files app codebase into views, so that only subcomponents live in the components directory. https://github.com/owncloud/web/pull/462...
owncloud/web/changelog/3.0.0_2021-04-21/change-new-files-list/0
{ "file_path": "owncloud/web/changelog/3.0.0_2021-04-21/change-new-files-list", "repo_id": "owncloud", "token_count": 79 }
595
Enhancement: Extension config Loading extension specific config was only possible for file editors. We now also load it in the general app information, so that it's available in the `apps` getter of the global vuex store. https://github.com/owncloud/web/pull/5024
owncloud/web/changelog/3.1.0_2021-05-12/enhancement-extension-config/0
{ "file_path": "owncloud/web/changelog/3.1.0_2021-05-12/enhancement-extension-config", "repo_id": "owncloud", "token_count": 68 }
596
Bugfix: Hide left sidebar navigation when switching routes On smaller screens, the left sidebar containing the extension navigation is collapsed. We've fixed that when the user expanded the sidebar and navigated to a different route the sidebar is collapsed again. https://github.com/owncloud/web/pull/5025
owncloud/web/changelog/3.3.0_2021-06-23/bugfix-hide-navigation-on-route-change/0
{ "file_path": "owncloud/web/changelog/3.3.0_2021-06-23/bugfix-hide-navigation-on-route-change", "repo_id": "owncloud", "token_count": 67 }
597
Enhancement: Accessible status indicators To make both the clickable (button) and the visible (icon) part of the status indicators in the files table accessible, we have added a description, in addition to the tooltip and `aria-label`. https://github.com/owncloud/web/pull/5182
owncloud/web/changelog/3.3.0_2021-06-23/enhancement-accessible-status-indicators/0
{ "file_path": "owncloud/web/changelog/3.3.0_2021-06-23/enhancement-accessible-status-indicators", "repo_id": "owncloud", "token_count": 75 }
598
Enhancement: Move hint in the Location picker under breadcrumbs We've moved the hint that is describing how to use the Location picker from sidebar under the breadcrumbs. There is navigation of the Files extension displayed in the sidebar now instead. https://github.com/owncloud/web/pull/5008
owncloud/web/changelog/3.3.0_2021-06-23/enhancement-move-location-picker-hint/0
{ "file_path": "owncloud/web/changelog/3.3.0_2021-06-23/enhancement-move-location-picker-hint", "repo_id": "owncloud", "token_count": 72 }
599
Bugfix: Batch action for deleting adhering permissions We fixed that the batch actions for deleting files and folders was showing for shares that only have viewer permissions. https://github.com/owncloud/web/pull/5441
owncloud/web/changelog/3.4.0_2021-07-09/bugfix-delete-batch-action-in-viewer-shares/0
{ "file_path": "owncloud/web/changelog/3.4.0_2021-07-09/bugfix-delete-batch-action-in-viewer-shares", "repo_id": "owncloud", "token_count": 53 }
600
Change: Add custom search service We've added `search` as another core app that can be utilized by other (third-party) frontend extensions to provide filter and search functionality. Please note that you need to add `search` to the `apps` array of your config.json file, otherwise the search bar with its global file ...
owncloud/web/changelog/4.0.0_2021-08-04/change-add-customer-search-service/0
{ "file_path": "owncloud/web/changelog/4.0.0_2021-08-04/change-add-customer-search-service", "repo_id": "owncloud", "token_count": 98 }
601
Enhancement: Signout icon We changed the icon in the personal menu nav item for signing out based on recent user feedback. https://github.com/owncloud/web/pull/5681
owncloud/web/changelog/4.1.0_2021-08-20/enhancement-signout-icon/0
{ "file_path": "owncloud/web/changelog/4.1.0_2021-08-20/enhancement-signout-icon", "repo_id": "owncloud", "token_count": 46 }
602
Enhancement: Add AppProvider actions to fileactions If the AppProvider within oCIS communicates a matching application for the mime type of a file, there are now additional actions in the default actions and actions in both the contextmenu and the right sidebar. https://github.com/owncloud/web/pull/5805
owncloud/web/changelog/4.3.0_2021-10-07/enhancement-external-app-fileactions/0
{ "file_path": "owncloud/web/changelog/4.3.0_2021-10-07/enhancement-external-app-fileactions", "repo_id": "owncloud", "token_count": 77 }
603
Bugfix: Context menu rendering We fixed that the context menu was being created for each and every file row of the current page (it was just not made visible). Now it only gets created when it gets activated by the user for a file row. https://github.com/owncloud/web/pull/5952
owncloud/web/changelog/4.5.0_2021-11-16/bugfix-context-menu-rendering/0
{ "file_path": "owncloud/web/changelog/4.5.0_2021-11-16/bugfix-context-menu-rendering", "repo_id": "owncloud", "token_count": 70 }
604
Bugfix: Inconsistencies in share expiry dates * Share expiry dates now always refer to the end of the given day. This change allows users to select the current day as expiry date. * Displayed expiry dates have been aligned to ensure their consistency. * Existing expiry dates for public links can now be removed again. ...
owncloud/web/changelog/4.7.0_2021-12-16/bugfix-expiry-date-inconsistencies/0
{ "file_path": "owncloud/web/changelog/4.7.0_2021-12-16/bugfix-expiry-date-inconsistencies", "repo_id": "owncloud", "token_count": 122 }
605
Enhancement: MarkdownEditor and MediaViewer can be default We have updated the extension handlers of two internal apps to be able to be used as default actions. https://github.com/owncloud/web/pull/6148
owncloud/web/changelog/4.7.0_2021-12-16/enhancement-default-markdown-mediaviewer-extensions/0
{ "file_path": "owncloud/web/changelog/4.7.0_2021-12-16/enhancement-default-markdown-mediaviewer-extensions", "repo_id": "owncloud", "token_count": 56 }
606
Bugfix: Focus management in topbar dropdowns We've fixed issues with focus management upon opening and closing the dropdown menus in the ApplicationSwitcher and Usermenu. https://github.com/owncloud/web/pull/6213
owncloud/web/changelog/5.0.0_2022-02-14/bugfix-topbar-focus-management/0
{ "file_path": "owncloud/web/changelog/5.0.0_2022-02-14/bugfix-topbar-focus-management", "repo_id": "owncloud", "token_count": 56 }
607
Enhancement: Lazy resource table cells ODS introduced lazy loadable table cells, this feature is now also part of web and enabled by default. To disable the feature set the displayResourcesLazy option to false. https://github.com/owncloud/web/pull/6204
owncloud/web/changelog/5.0.0_2022-02-14/enhancement-lazy-resource-table/0
{ "file_path": "owncloud/web/changelog/5.0.0_2022-02-14/enhancement-lazy-resource-table", "repo_id": "owncloud", "token_count": 66 }
608
Enhancement: Use the Vue store for spaces Using the store for spaces integrates them seamlessly in our ecosystem and makes it easier to develop spaces even further. E.g. the properties of a space can now be altered without fetching all spaces again. This was achieved by introducing a "buildSpace" method, that transfor...
owncloud/web/changelog/5.1.0_2022-02-18/enhancement-spaces-use-store/0
{ "file_path": "owncloud/web/changelog/5.1.0_2022-02-18/enhancement-spaces-use-store", "repo_id": "owncloud", "token_count": 102 }
609
Bugfix: Thumbnails only for accepted shares Only accepted shares now display a thumbnail in the "Shared with me" resource table. https://github.com/owncloud/web/issues/5310 https://github.com/owncloud/web/pull/6534
owncloud/web/changelog/5.3.0_2022-03-23/bugfix-accepted-share-thumbnails/0
{ "file_path": "owncloud/web/changelog/5.3.0_2022-03-23/bugfix-accepted-share-thumbnails", "repo_id": "owncloud", "token_count": 62 }
610
Enhancement: App context route to query instead of params We've moved app context information (where you get redirected when you close an app) into the query instead of a regular param. This relocates this information further to the back of the url where it's less confusing for users. https://github.com/owncloud/web/...
owncloud/web/changelog/5.3.0_2022-03-23/enhancement-context-route-name-in-query/0
{ "file_path": "owncloud/web/changelog/5.3.0_2022-03-23/enhancement-context-route-name-in-query", "repo_id": "owncloud", "token_count": 82 }
611
Enhancement: Update the stored space after its members have been changed We now update the stored space after its members have been changed. Also, the permission-object of a built space has been simplified in the course of this. https://github.com/owncloud/web/pull/6545
owncloud/web/changelog/5.3.0_2022-03-23/enhancement-space-update-store/0
{ "file_path": "owncloud/web/changelog/5.3.0_2022-03-23/enhancement-space-update-store", "repo_id": "owncloud", "token_count": 66 }
612
Enhancement: Archive download for oc10 backend We now offer archive downloads (multifile or folder) as archive with oc10 backends. Since oc10 archive downloads are path based this could only be made possible on pages that follow the folder hierarchy of the logged in user. In other words: on favorites pages the archive...
owncloud/web/changelog/5.4.0_2022-04-11/enhancement-archiver-v1-service/0
{ "file_path": "owncloud/web/changelog/5.4.0_2022-04-11/enhancement-archiver-v1-service", "repo_id": "owncloud", "token_count": 130 }
613
Enhancement: Spaces link sharing Spaces and their resources can now be shared via links. https://github.com/owncloud/web/pull/6633 https://github.com/owncloud/web/issues/6283
owncloud/web/changelog/5.4.0_2022-04-11/enhancement-spaces-link-sharing/0
{ "file_path": "owncloud/web/changelog/5.4.0_2022-04-11/enhancement-spaces-link-sharing", "repo_id": "owncloud", "token_count": 55 }
614
Bugfix: Changing link permissions to role requiring password We have added a dialogue option for updates of a link's permissions to a new role that would require a password. It now prompts the user to add a password instead of failing directly. https://github.com/owncloud/web/pull/6989 https://github.com/owncloud/web...
owncloud/web/changelog/5.5.0_2022-06-20/bugfix-link-permission-enforced-password/0
{ "file_path": "owncloud/web/changelog/5.5.0_2022-06-20/bugfix-link-permission-enforced-password", "repo_id": "owncloud", "token_count": 84 }
615
Bugfix: Share with people items overflows on long names We've fixed a bug where: * Search suggestion overflows the view port, while name is too long * Selected user overflows the select box item, while name is too long https://github.com/owncloud/web/pull/6984 https://github.com/owncloud/web/issues/6004
owncloud/web/changelog/5.5.0_2022-06-20/bugfix-share-with-people-overflow-on-long-names/0
{ "file_path": "owncloud/web/changelog/5.5.0_2022-06-20/bugfix-share-with-people-overflow-on-long-names", "repo_id": "owncloud", "token_count": 86 }
616
Enhancement: Add OcContextualHelper We've added contextual helpers to provide more information based on the context https://github.com/owncloud/web/issues/6590 https://github.com/owncloud/web/pull/6750
owncloud/web/changelog/5.5.0_2022-06-20/enhancement-add-contextual-help/0
{ "file_path": "owncloud/web/changelog/5.5.0_2022-06-20/enhancement-add-contextual-help", "repo_id": "owncloud", "token_count": 59 }
617
Enhancement: Introduce sharing jail We've added the sharing jail to oCIS which means that navigating and working with shares now happens inside the `Shares` navigation item. https://github.com/owncloud/web/pull/6593 https://github.com/owncloud/web/pull/6909 https://github.com/owncloud/web/pull/6916 https://github.co...
owncloud/web/changelog/5.5.0_2022-06-20/enhancement-introduce-sharing-jail/0
{ "file_path": "owncloud/web/changelog/5.5.0_2022-06-20/enhancement-introduce-sharing-jail", "repo_id": "owncloud", "token_count": 122 }
618
Enhancement: Resumable uploads We've implemented Uppy as a library for handling uploads. This concludes the following features and changes: - Resumable uploads when the backend supports the Tus-protocol - A nice looking overview for all files that have been uploaded successfully or failed to upload - Navigation acros...
owncloud/web/changelog/5.5.0_2022-06-20/enhancement-resumeable-uploads/0
{ "file_path": "owncloud/web/changelog/5.5.0_2022-06-20/enhancement-resumeable-uploads", "repo_id": "owncloud", "token_count": 160 }
619
Enhancement: Separate direct and indirect link shares in sidebar We have split the list of link shares into two lists, one with direct (and editable) and another one with read-only indirect link shares of parent folders for better structure in the sidebar. https://github.com/owncloud/web/pull/7140 https://github.com/...
owncloud/web/changelog/5.6.0_2022-06-21/enhancement-split-sidebar-direct-indirect-linkshares/0
{ "file_path": "owncloud/web/changelog/5.6.0_2022-06-21/enhancement-split-sidebar-direct-indirect-linkshares", "repo_id": "owncloud", "token_count": 89 }
620
Bugfix: Files pagination scroll to top We've fixed a bug where changing the page in a file list (pagination) doesn't scroll to top. https://github.com/owncloud/web/pull/7322 https://github.com/owncloud/web/issues/7138
owncloud/web/changelog/5.7.0_2022-09-09/bugfix-files-pagination-scroll-to-top/0
{ "file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-files-pagination-scroll-to-top", "repo_id": "owncloud", "token_count": 69 }
621
Bugfix: No redirect after disabling space We've fixed a bug where the user was not redirected to the spaces overview after disabling the space inside the space view. https://github.com/owncloud/web/pull/7334 https://github.com/owncloud/web/issues/7291
owncloud/web/changelog/5.7.0_2022-09-09/bugfix-no-redirect-after-disabling-space/0
{ "file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-no-redirect-after-disabling-space", "repo_id": "owncloud", "token_count": 69 }
622