Page MenuHomePhabricator

PetScan returns a blank page
Closed, InvalidPublicBUG REPORT

Description

Hello,

PetScan returns a blank page:

https://petscan.wmflabs.org/

Could you please check?

Thanks a lot!

Event Timeline

<body style='display:none'> is the culprit.

Once the page renders, it also says that issues should be reported at https://github.com/magnusmanske/petscan_rs/issues instead of Phabricator.

Workaround (works in firefox):

  1. Right-click on page (https://petscan.wmflabs.org/);
  2. Click on "inspect"
  3. Find the line on html that reads
<body style="display:none">
  1. Right click on it and select "Edit as HTML"
  2. Change to
<body style>
  1. Click somewhere else in the html code
  2. Tool should appear normally.

With the workaround, for me it is not possible to call QuickStatements from the PetScan results, in order to create missing wikidata objects for unconnected articles or to connect articles to already existing objects.

For example:

With the workaround, for me it is not possible to call QuickStatements from the PetScan results, in order to create missing wikidata objects for unconnected articles or to connect articles to already existing objects.

Does it work if you click on the console tab (after clicking on "Inspect"), enter initializeInterface() and press enter?

Hello Nikki, yes, initializeInterface() does work for me. Thanks a lot!