Miguel Palhas
Miguel Palhas
I'm working on a Single Page Application written in Angular, where I'm trying to apply this module to a button This seems to create an overlay with the flash object...
I'm building an app based on both [suspenders](https://github.com/thoughtbot/suspenders) and administrate. This means I have `config.action_controller.action_on_unpermitted_parameters = :raise`, and I'd like to keep it that way Another thing I have is...
I was trying yesterday to override the `` tag in my admin dashboard. Turns our adding a head template to the config with the new title in it doesn't work,...
I have a datetime column: ``` index do column :fetched_at end ``` which is sortable by default (expected). But whenever I add a custom label, or a custom render function...
I accidentally clicked "Mark as all read" instead of the "Refresh" button, causing all my unread entries to disapear. This looks like a UI problem to me. The button is...
I'm trying to incorporate this into a current project. I'm having a problem though. I want to provide atomic transitions where additional fields are required. E.g: when transitioning from state...
I'm using this package for the first time. First of all, thank you for the work put into it :+1: I'm not currently understanding why this is built as a...
Hi again (and sorry for the spam :smile: ) In addition to the first issue I just posted, I found another thing weird within the codebase. The way each callback...
Apparently the encryption tool crashes when a "%" is present in the key
Is it possible to achieve something like this? ```solidity contract Vault { struct Account { uint256 id; uint256 shares; } mapping(address => Account) accounts; uint256 totalShares; /// #invariant unchecked_sum(accounts.shares) ==...