Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tasks page is glitching momentarily upon reload #214

Closed
meminens opened this issue Nov 5, 2018 · 2 comments
Closed

Tasks page is glitching momentarily upon reload #214

meminens opened this issue Nov 5, 2018 · 2 comments

Comments

@meminens
Copy link

meminens commented Nov 5, 2018

Steps to reproduce

  1. Open Nextcloud in a browser
  2. Click on the Tasks icon in the top menu and wait until the page is loaded fully
  3. Click on the Tasks icon again

Expected behaviour

Tasks page should refresh normally

Actual behaviour

Page glitches momentarily before it is loaded properly (see below image)
image

Server configuration

Operating system: Ubuntu 18.04

Web server: Apache 2.4.29

Database: MySQL 5.7

PHP version: PHP 7.2

Nextcloud version: 14.0.3

Tasks version: 0.9.7

Updated from an older Nextcloud or fresh install: 14.0.1

Signing status:

No errors have been found.

List of activated apps:

Enabled:
  - activity: 2.7.0
  - bruteforcesettings: 1.1.0
  - calendar: 1.6.3
  - cloud_federation_api: 0.0.1
  - contacts: 2.1.6
  - dav: 1.6.0
  - federatedfilesharing: 1.4.0
  - files: 1.9.0
  - files_pdfviewer: 1.3.2
  - files_sharing: 1.6.2
  - files_texteditor: 2.6.0
  - files_trashbin: 1.4.1
  - files_versions: 1.7.1
  - files_videoplayer: 1.3.0
  - firstrunwizard: 2.3.0
  - gallery: 18.1.0
  - logreader: 2.0.0
  - lookup_server_connector: 1.2.0
  - nextcloud_announcements: 1.3.0
  - notes: 2.4.2
  - notifications: 2.2.1
  - oauth2: 1.2.1
  - password_policy: 1.4.0
  - provisioning_api: 1.4.0
  - qownnotesapi: 18.8.0
  - sharebymail: 1.4.0
  - tasks: 0.9.7
  - theming: 1.5.0
  - twofactor_backupcodes: 1.3.1
  - updatenotification: 1.4.1
  - workflowengine: 1.4.0
Disabled:
  - accessibility
  - admin_audit
  - bookmarks
  - comments
  - encryption
  - federation
  - files_external
  - serverinfo
  - spreed
  - support
  - survey_client
  - systemtags
  - user_external
  - user_ldap

Nextcloud configuration:

{
    "system": {
        "instanceid": "***REMOVED SENSITIVE VALUE***",
        "passwordsalt": "***REMOVED SENSITIVE VALUE***",
        "secret": "***REMOVED SENSITIVE VALUE***",
        "trusted_domains": [
            "xxx.com",
            "www.xxx.com",
            "localhost"
        ],
        "datadirectory": "***REMOVED SENSITIVE VALUE***",
        "htaccess.RewriteBase": "\/cloud\/",
        "dbtype": "mysql",
        "version": "14.0.3.0",
        "overwrite.cli.url": "https:\/\/xxx.com\/cloud",
        "dbname": "***REMOVED SENSITIVE VALUE***",
        "dbhost": "***REMOVED SENSITIVE VALUE***",
        "dbport": "",
        "dbtableprefix": "oc_",
        "mysql.utf8mb4": true,
        "dbuser": "***REMOVED SENSITIVE VALUE***",
        "dbpassword": "***REMOVED SENSITIVE VALUE***",
        "installed": true,
        "maintenance": false,
        "memcache.local": "\\OC\\Memcache\\Redis",
        "filelocking.enabled": "true",
        "memcache.locking": "\\OC\\Memcache\\Redis",
        "redis": {
            "host": "***REMOVED SENSITIVE VALUE***",
            "port": 0,
            "timeout": 0,
            "password": "***REMOVED SENSITIVE VALUE***"
        },
        "cache_path": "\/home\/bisherbas\/CloudData\/cache",
        "mail_from_address": "***REMOVED SENSITIVE VALUE***",
        "mail_smtpmode": "smtp",
        "mail_smtpsecure": "ssl",
        "mail_smtpauthtype": "LOGIN",
        "mail_domain": "***REMOVED SENSITIVE VALUE***",
        "mail_smtphost": "***REMOVED SENSITIVE VALUE***",
        "mail_smtpport": "465",
        "log_type": "file",
        "logfile": "\/home\/bisherbas\/CloudData\/mynextcloud.log",
        "loglevel": 3,
        "logtimezone": "America\/New_York",
        "logdateformat": "F j, Y, g:i a",
        "log_rotate_size": 10485760,
        "mail_smtpauth": 1,
        "mail_smtpname": "***REMOVED SENSITIVE VALUE***",
        "mail_smtppassword": "***REMOVED SENSITIVE VALUE***",
        "updater.release.channel": "stable",
        "theme": "",
        "enable_previews": false,
        "preview_max_x": 1024,
        "preview_max_y": 1024,
        "preview_max_scale_factor": 20,
        "preview_max_filesize_image": 20,
        "session_lifetime": 86400
    }
}

Are you using external storage, if yes which one: No.

Are you using encryption: No.

Are you using an external user-backend, if yes which one: No

Client configuration

Browser: Firefox 63.0.1

Operating system: macOS 10.14.1

CalDAV-clients: Davdroid

Logs

Web server error log

No errors or warnings.

Nextcloud log (data/nextcloud.log)

No  cache entry found for /appdata_oc5wrn9v4db3/theming/images (storage:  local::/home/bisherbas/CloudData/, internalPath:  appdata_oc5wrn9v4db3/theming/images)

Browser log

Firefox console log:

JQMIGRATE: Migrate is installed, version 1.4.0 core.js:7:542
Deprecation warning: use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info. core.js:1563:2834
New search handler registered

No warnings or errors in the Network log.
@skjnldsv
Copy link
Member

skjnldsv commented Nov 5, 2018

I'm guessing this is because the ng-hide class is not yet declared and need angular to finish loading?

@raimund-schluessler
Copy link
Member

I'm guessing this is because the ng-hide class is not yet declared and need angular to finish loading?

Exactly, also see #160 for the first report of this. Since this is purely a visual problem, I won't put effort on fixing it on the Angular branch since it will be resolved with the move to Vue anyway: #194.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants