Closed (fixed)
Project:
Power BI Integration
Version:
2.0.3
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
10 Dec 2025 at 16:48 UTC
Updated:
16 Mar 2026 at 09:06 UTC
Jump to comment: Most recent
The following warning shows on the Status Report page:
The powerbi.js library is missing, check the README.md file for instructions to load it
Visit the Status Report page
The helper function _pwbi_get_path is checking for the incorrect library name (pwbi). Simply update the argument to the correct name.
From this:
if (function_exists('libraries_get_path') && $libraries_path = libraries_get_path('pwbi')) {
return $libraries_path;
}
To this:
if (function_exists('libraries_get_path') && $libraries_path = libraries_get_path('powerbi')) {
return $libraries_path;
}
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #2
simplyshipley commentedComment #5
enriquelacoma commentedComment #6
enriquelacoma commentedComment #8
enriquelacoma commented