Reputation: 29
I am new to Angular and trying to use $uibmodal but getting the below error while running: Error: [$injector:unpr] Unknown provider: $uibmodalProvider <- $uibmodal
I am using the below versions: Angular version: 1.5.11 Angular Bootstrap version: 2.5.0.
I think there is some compatibility issue between the versions.
Any help is highly appreciated.
Upvotes: 2
Views: 813
Reputation: 136184
By looking at error it seems like you made typo in dependency name, it should be $uibModal
instead of $uibmodal
Upvotes: 1