code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/nerdamer.core.js b/nerdamer.core.js @@ -5984,6 +5984,7 @@ var nerdamer = (function (imports) { }; this.callPeekers = function(name) { + if (settings.callPeekers) { var peekers = this.peekers[name]; //remove the first items and stringify var args = arguments2Array(arguments).slice(1).map(stringify); @@ -599...
0
diff --git a/userscript.user.js b/userscript.user.js @@ -47791,6 +47791,8 @@ var $$IMU_EXPORT$$; if (domain_nosub === "newtumbl.com") { // https://dn0.newtumbl.com/img/81100/14861971/1/21809496/nT_sei0rd05cpjcffzfr0pqaee7_300.jpg // https://dn0.newtumbl.com/img/81100/14861971/1/21809496/nT_sei0rd05cpjcffzfr0pqaee7.jpg ...
7
diff --git a/contribs/gmf/src/controllers/abstract.js b/contribs/gmf/src/controllers/abstract.js @@ -664,7 +664,10 @@ function isIOS() { function headingFromDevices(deviceOrientation) { let hdg = deviceOrientation.getHeading(); let orientation = window.orientation; - if (!isIOS()) { + if (hdg === undefined) { + return ...
9
diff --git a/package.json b/package.json "@textile/threads-client": "^2.1.2", "@textile/threads-id": "^0.5.1", "@toruslabs/customauth": "^11.0.0", - "@toruslabs/customauth-react-native-sdk": "^3.0.1", + "@toruslabs/customauth-react-native-sdk": "^3.1.0", "@tradle/react-native-http": "^2.0.1", "@walletconnect/client": "...
3
diff --git a/packages/spark-core/components/_buttons.scss b/packages/spark-core/components/_buttons.scss &::after { content: ''; - border-bottom: ($btn-border-width + 1px) solid $red-real; + border-bottom: ($btn-border-width + 1px) solid $btn-border-color; display: block; width: 100%; padding-top: $space-xs;
3
diff --git a/token-metadata/0xf04a8ac553FceDB5BA99A64799155826C136b0Be/metadata.json b/token-metadata/0xf04a8ac553FceDB5BA99A64799155826C136b0Be/metadata.json "symbol": "FLIXX", "address": "0xf04a8ac553FceDB5BA99A64799155826C136b0Be", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED...
3
diff --git a/projects/ngx-extended-pdf-viewer/src/lib/theme/common/viewer-with-images.scss b/projects/ngx-extended-pdf-viewer/src/lib/theme/common/viewer-with-images.scss @@ -1530,7 +1530,7 @@ ngx-extended-pdf-viewer { #errorMoreInfo { background-color: $page-background; - color: $background; + color: $error-color; pad...
12
diff --git a/src/Header.jsx b/src/Header.jsx @@ -20,6 +20,8 @@ import * as ceramicApi from '../ceramic.js'; // import * as ceramicAdmin from '../ceramic-admin.js'; import sceneNames from '../scenes/scenes.json'; +const localEuler = new THREE.Euler(); + // console.log('index 1'); const _makeName = (N = 8) => (Math.rando...
0
diff --git a/src/apps.json b/src/apps.json 19 ], "icon": "Clipboard.js.svg", - "script": "clipboard(?:\\.min)?\\.js", + "script": "clipboard(?:-([\\d.]+))?(?:\\.min)?\\.js\\;version:\\1", "website": "https://clipboardjs.com/" }, "CloudCart": {
7
diff --git a/app/main.js b/app/main.js @@ -1318,12 +1318,14 @@ ipcMain.on("send-many", function (event, fromAddresses, toAddress, fee, threshol let recipients = [{address: toAddress, satoshis: amountInSatoshiToSend}]; // Refund thresholdLimitInSatoshi amount to current address + if (thresholdLimitInSatoshi > 0) { for (...
11
diff --git a/.babelrc b/.babelrc { - "presets": ["es2015", "stage-0"], - "plugins": ["transform-runtime"] + "presets": [ + "es2015" + ], + "plugins": [ + "syntax-async-functions", + "transform-async-to-generator", + "transform-regenerator", + "transform-runtime" + ] } \ No newline at end of file
3
diff --git a/src/components/common/header/AppToolbar.js b/src/components/common/header/AppToolbar.js @@ -11,7 +11,7 @@ export const SOURCES_URL = 'https://sources.mediacloud.org/'; export const BLOG_URL = 'http://mediacloud.org/'; export const TOOLS_URL = 'https://tools.mediacloud.org/'; -const BrandToolbar = (props) =...
10
diff --git a/src/track.js b/src/track.js @@ -54,7 +54,6 @@ var getSlideStyle = function (spec) { style.left = -spec.index * spec.slideWidth; } style.opacity = (spec.currentSlide === spec.index) ? 1 : 0; - style.visibility = (spec.currentSlide === spec.index) ? 'visible' : 'hidden'; style.transition = 'opacity ' + spec....
2
diff --git a/plugins/keppel/app/javascript/app/components/accounts/create.jsx b/plugins/keppel/app/javascript/app/components/accounts/create.jsx @@ -79,7 +79,7 @@ const FormBody = ({ values }) => { <Form.ElementHorizontal label='Upstream source' name='url' required> <Form.Input elementType='input' type='text' name='url...
4
diff --git a/articles/multifactor-authentication/developer/mfa-from-id-token.md b/articles/multifactor-authentication/developer/mfa-from-id-token.md @@ -39,10 +39,12 @@ In this section we will see how you can check if a user logged in with MFA in a First, we need to authenticate a user and get an ID Token. To do that w...
3
diff --git a/core/server/api/v3/session.js b/core/server/api/v3/session.js const Promise = require('bluebird'); -const i18n = require('../../../shared/i18n'); +const tpl = require('@tryghost/tpl'); const errors = require('@tryghost/errors'); const models = require('../../models'); const auth = require('../../services/a...
14
diff --git a/exampleSite/content/fragments/item/docs.md b/exampleSite/content/fragments/item/docs.md @@ -8,6 +8,53 @@ title = "Documentation" enable = true +++ -# UNDER CONSTRUCTION +### Variables + +#### Content +*type: string* +*Default Hugo variable. Defined simply by entering it's value under the frontmatter sectio...
0
diff --git a/userscript.user.js b/userscript.user.js @@ -88505,13 +88505,13 @@ var $$IMU_EXPORT$$; process: function(done, resp, cache_key) { var match = resp.responseText.match(/<a id=image-link class=sample href="(\/\/(?:[^/]+\.)?sankakucomplex\.com\/[^"]+)"/); if (!match) { - match = resp.responseText.match(/<video ...
1
diff --git a/src/angular/projects/spark-angular/src/lib/directives/inputs/sprk-input/sprk-input.directive.ts b/src/angular/projects/spark-angular/src/lib/directives/inputs/sprk-input/sprk-input.directive.ts @@ -16,9 +16,9 @@ export class SprkInputDirective implements OnInit { OnChange($event) { const value = (this.ref....
3
diff --git a/src/background.js b/src/background.js @@ -8,6 +8,7 @@ class Background { fetch(){ this.gitlab = GitLab.createFromConfig(this.config, this.storage); + this.fetchCurrentUser().then(user => (this.currentUser = user)); this.config.activeProjectIds.forEach((project_id) => { this.gitlab.getProjectEvents(project_...
8
diff --git a/src/core/operations/CRC8Checksum.mjs b/src/core/operations/CRC8Checksum.mjs */ import Operation from "../Operation"; +import OperationError from "../errors/OperationError"; + +import { toHex } from "../lib/Hex"; /** * CRC-8 Checksum operation @@ -19,8 +22,8 @@ class CRC8Checksum extends Operation { this.na...
0
diff --git a/token-metadata/0x9b06D48E0529ecF05905fF52DD426ebEc0EA3011/metadata.json b/token-metadata/0x9b06D48E0529ecF05905fF52DD426ebEc0EA3011/metadata.json "symbol": "XSP", "address": "0x9b06D48E0529ecF05905fF52DD426ebEc0EA3011", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/blockchain.js b/blockchain.js import flowConstants from './flow-constants.js'; const {FungibleToken, NonFungibleToken, ExampleToken, ExampleNFT, ExampleAccount} = flowConstants; +import wordList from './flow/wordlist.js'; /* import flowConstants from './flow-constants.js'; import {accountsHost} from './con...
0
diff --git a/lib/avatar/redrawAvatar.js b/lib/avatar/redrawAvatar.js @@ -3,8 +3,9 @@ const getGeneralToken = require('../util/getGeneralToken.js').func exports.optional = ['jar'] -const nextFunction = (jar, token) => { - return http({ +function redrawAvatar (jar, token) { + return new Promise((resolve, reject) => { + c...
4
diff --git a/token-metadata/0x5C84bc60a796534bfeC3439Af0E6dB616A966335/metadata.json b/token-metadata/0x5C84bc60a796534bfeC3439Af0E6dB616A966335/metadata.json "symbol": "BONE", "address": "0x5C84bc60a796534bfeC3439Af0E6dB616A966335", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/README.md b/README.md @@ -101,8 +101,8 @@ We appreciate all contributions to the **siimple** project and help make it bett | Project | Description | |---------|-------------| -| (siimple-rubygem)[https://github.com/BerkhanBerkdemir/siimple-rubygem] | siimple Ruby Gem for any type of Ruby web application | ...
1
diff --git a/angular/projects/spark-angular/src/lib/components/inputs/Checkbox.stories.ts b/angular/projects/spark-angular/src/lib/components/inputs/Checkbox.stories.ts +/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { storyWrapper } from '../../../../../../.storybook/helpers/storyWrapper...
3
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -9,6 +9,12 @@ To see all merged commits on the master branch that will be part of the next plo where X.Y.Z is the semver of most recent plotly.js release. +## [1.55.1] -- 2020-09-02 + +### Fixed + - Install `image-size` module in dependencies [#5119] + + ## [1.55.0] -- 2020-0...
3
diff --git a/website/themes/uppy/layout/index.ejs b/website/themes/uppy/layout/index.ejs .use(Uppy.GoogleDrive, { target: Uppy.Dashboard, companionUrl: COMPANION_ENDPOINT }) .use(Uppy.Instagram, { target: Uppy.Dashboard, companionUrl: COMPANION_ENDPOINT }) .use(Uppy.Dropbox, { target: Uppy.Dashboard, companionUrl: COMP...
0
diff --git a/ccxt.js b/ccxt.js @@ -15249,7 +15249,7 @@ var hitbtc2 = extend (hitbtc, { async fetchOpenOrders (symbol = undefined, params = {}) { await this.loadMarkets (); - let market; + let market = undefined; if (symbol) { market = this.market (symbol); params = this.extend ({'symbol': market['id']});
1
diff --git a/token-metadata/0x1Aa61c196E76805fcBe394eA00e4fFCEd24FC469/metadata.json b/token-metadata/0x1Aa61c196E76805fcBe394eA00e4fFCEd24FC469/metadata.json "symbol": "SAFE", "address": "0x1Aa61c196E76805fcBe394eA00e4fFCEd24FC469", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/src/classes/version/version.ts b/src/classes/version/version.ts @@ -6,6 +6,7 @@ import { Transaction } from '../transaction'; import { removeTablesApi, setApiOnPlace, parseIndexSyntax } from './schema-helpers'; import { exceptions } from '../../errors'; import { createTableSchema } from '../../helpers/tabl...
11
diff --git a/DisplayInlineCommentFlagHistory.user.js b/DisplayInlineCommentFlagHistory.user.js // @description Grabs post timelines and display comment flag counts beside post comments, on comment hover displays flags // @homepage https://github.com/samliew/SO-mod-userscripts // @author @samliew -// @version 1.3.3 +// ...
1
diff --git a/dygraph-externs.js b/dygraph-externs.js @@ -40,7 +40,7 @@ Dygraph.prototype.isZoomed; /** @type {function(): string} */ Dygraph.prototype.toString; -/** @type {function(string, string)} */ +/** @type {function(string, string=)} */ Dygraph.prototype.getOption; /** @type {function(): number} */ @@ -127,7 +12...
1
diff --git a/packages/app/src/test/integration/service/page.test.js b/packages/app/src/test/integration/service/page.test.js @@ -909,26 +909,44 @@ describe('PageService', () => { }, ]); + const parent = await Page.find({ path: '/' }); + await Page.insertMany([ + { + path: '/migratedD', + grant: Page.GRANT_PUBLIC, + cre...
7
diff --git a/token-metadata/0x0f8794f66C7170c4f9163a8498371A747114f6C4/metadata.json b/token-metadata/0x0f8794f66C7170c4f9163a8498371A747114f6C4/metadata.json "symbol": "FMA", "address": "0x0f8794f66C7170c4f9163a8498371A747114f6C4", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/docs/sphinx_greenlight_build.md b/docs/sphinx_greenlight_build.md @@ -67,8 +67,6 @@ index 79a01b68..fe5758af 100644 Also make the following modifications to `app.json` -( Get the IP address of your raspberry pi to put in the `public_url` field with `hostname -I` ) - ```diff diff --git a/config/app.json b/c...
3
diff --git a/packages/yoroi-extension/chrome/extension/connector/api.js b/packages/yoroi-extension/chrome/extension/connector/api.js @@ -776,7 +776,7 @@ export async function connectorSignCardanoTx( ...requiredScriptSignKeys, ]); - console.log('totalAdditionalRequiredSignKeys', JSON.stringify(totalAdditionalRequiredSig...
11
diff --git a/articles/client-auth/v2/mobile-desktop.md b/articles/client-auth/v2/mobile-desktop.md @@ -138,3 +138,28 @@ Request Parameters: * `code_verifier`: The cryptographically random key used to generate the `code_challenge` passed to the `/authorize` endpoint * `code`: The authorization code received from the ini...
0
diff --git a/bin/logagent.js b/bin/logagent.js @@ -72,7 +72,7 @@ var moduleAlias = { 'drop-events': '../lib/plugins/output-filter/dropEventsFilter.js', 'docker-enrichment': '../lib/plugins/output-filter/docker-log-enrichment.js', 'kubernetes-enrichment': '../lib/plugins/output-filter/kubernetes-enrichment.js', - 'geo-i...
10
diff --git a/test/support/assert.js b/test/support/assert.js @@ -48,7 +48,8 @@ assert.imageEqualsFile = function(buffer, referenceImageRelativeFilePath, tolera if (err) { var testImageFilePath = randomImagePath(); testImage.save(testImageFilePath); - debug("Images didn't match, test image is %s, expected is %s", testIm...
7
diff --git a/src/components/IOUConfirmationList.js b/src/components/IOUConfirmationList.js @@ -148,7 +148,7 @@ class IOUConfirmationList extends Component { this.toggleOption = this.toggleOption.bind(this); this.confirm = this.confirm.bind(this); this.scrollToIndex = this.scrollToIndex.bind(this); - this.maybeToggleInd...
10
diff --git a/packages/cx/src/charts/Bar.d.ts b/packages/cx/src/charts/Bar.d.ts @@ -17,6 +17,9 @@ interface BarProps extends ColumnBarBaseProps { /** Base CSS class to be applied to the element. Defaults to `bar`. */ baseClass?: string, + /** Tooltip configuration. For more info see Tooltips. */ + tooltip?: Cx.StringPro...
0
diff --git a/src/components/form.js b/src/components/form.js @@ -103,6 +103,7 @@ module.exports = function(app) { '</div>' + '<form-builder-option property="customClass"></form-builder-option>' + '<form-builder-option property="reference"></form-builder-option>' + + '<form-builder-option property="clearOnHide"></form-b...
11
diff --git a/assets/js/components/GoogleChart.js b/assets/js/components/GoogleChart.js @@ -63,7 +63,7 @@ export default function GoogleChart( props ) { if ( onReady ) { global.google.visualization.events.addListener( googleChart, 'ready', () => { - onReady( googleChart, data ); + onReady( googleChart ); } ); }
2
diff --git a/articles/quickstart/spa/react/02-custom-login.md b/articles/quickstart/spa/react/02-custom-login.md @@ -15,7 +15,7 @@ budicon: 448 In the [previous step](/quickstart/spa/react/01-login), we enabled login with Auth0's Lock widget. You can also build your own UI with a custom design for authentication if you...
14
diff --git a/src/builders/launch-query.js b/src/builders/launch-query.js @@ -16,13 +16,13 @@ module.exports = (req) => { // eslint-disable-next-line no-underscore-dangle query._id = ObjectId(req.query.flight_id); } - // Allow date range comparisons using a veriety of date formats + // Allow date range comparisons using...
11
diff --git a/src/scene/scene.js b/src/scene/scene.js pc.extend(pc, function () { /** * @name pc.Scene - * @class A scene is a container for {@link pc.Model} instances. + * @class A scene is graphical representation of an environment. It manages the scene hierarchy, all + * graphical objects, lights, and scene-wide prop...
7
diff --git a/packages/@uppy/core/types/index.d.ts b/packages/@uppy/core/types/index.d.ts @@ -135,6 +135,12 @@ export interface Locale<TNames extends string = string> { pluralize?: (n: number) => number } +export interface Logger { + debug: (...args: any[]) => void; + warn: (...args: any[]) => void; + error: (...args: a...
0
diff --git a/DeletedUsersHelper.user.js b/DeletedUsersHelper.user.js // @description Additional capability and improvements to display/handle deleted users // @homepage https://github.com/samliew/SO-mod-userscripts // @author @samliew -// @version 1.2.1 +// @version 1.3 // // @include https://*stackoverflow.com/* // @i...
1
diff --git a/articles/integrations/aws-api-gateway-2/part-1.md b/articles/integrations/aws-api-gateway-2/part-1.md @@ -6,7 +6,7 @@ toc: true # AWS API Gateway Tutorial - Part 1 -::: note +::: warning This portion of the tutorial has been adapted from the [official AWS example](http://docs.aws.amazon.com/apigateway/late...
0
diff --git a/defaultConfig.js b/defaultConfig.js @@ -126,8 +126,8 @@ module.exports = { |-------------------------------------------------------------------------- | | The color palette defined above is also assigned to the "colors" key of - | your Tailwind config. This makes it easy to access them your CSS using - | T...
2
diff --git a/world.js b/world.js @@ -809,7 +809,7 @@ const _connectRoom = async (roomName, worldURL) => { }; const objects = []; -world.addObject = (contentId, parentId, position, quaternion) => { +world.addObject = (contentId, parentId = null, position = new THREE.Vector3(), quaternion = new THREE.Quaternion(), option...
0
diff --git a/README.md b/README.md @@ -8,7 +8,7 @@ Fractal is a tool to help you **build** and **document** web component libraries **Read the Fractal documentation at http://fractal.build/guide.** -**Need help?** We have an active and helpful community on [Fractal's Slack workspace](https://slack.fractal.build/) - joi...
14
diff --git a/test/specs/dom_components/model/Symbols.js b/test/specs/dom_components/model/Symbols.js @@ -120,6 +120,13 @@ describe('Symbols', () => { describe('Creating 3 symbols in the wrapper', () => { let allInst, all, comp, symbol, compInitChild; + + const getFirstInnSymbol = cmp => + cmp + .components() + .at(0) +...
7
diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/deploy.js b/packages/node_modules/@node-red/editor-client/src/js/ui/deploy.js @@ -334,8 +334,7 @@ RED.deploy = (function() { var invalidNodes = []; RED.nodes.eachNode(function(node) { - hasInvalid = hasInvalid || !node.valid; - if (!node.valid) { + if...
8
diff --git a/src/storage_manager/config/config.js b/src/storage_manager/config/config.js @@ -53,7 +53,7 @@ module.exports = { // set contentType paramater of $.ajax // true: application/json; charset=utf-8' // false: 'x-www-form-urlencoded' - contentTypeJson: false, + contentTypeJson: true, credentials: 'include' };
12
diff --git a/packages/neutrine/src/widgets/toast/index.js b/packages/neutrine/src/widgets/toast/index.js @@ -22,7 +22,8 @@ export class Toast extends React.Component { this.timer = null; //Bind some methods this.close = this.close.bind(this); - this.display = this.display.bind(this); + this.show = this.show.bind(this);...
7
diff --git a/ui/src/components/Diagram/DiagramManageMenu.jsx b/ui/src/components/Diagram/DiagramManageMenu.jsx @@ -37,8 +37,8 @@ class CollectionManageMenu extends Component { <Button icon="cog" onClick={this.toggleEdit}> <FormattedMessage id="diagram.info.edit" defaultMessage="Settings" /> </Button> - <Button icon="do...
10
diff --git a/src/api-gateway/createAuthScheme.js b/src/api-gateway/createAuthScheme.js @@ -214,7 +214,6 @@ export default function createAuthScheme( enhancedAuthContext, principalId: policy.principalId, usageIdentifierKey: policy.usageIdentifierKey, - user: policy.principalId, }, }), )
2
diff --git a/src/app/Http/Controllers/CrudController.php b/src/app/Http/Controllers/CrudController.php @@ -89,7 +89,7 @@ class CrudController extends BaseController */ protected function setupConfigurationForCurrentOperation() { - $className = 'setup'.\Str::studly($this->crud->getCurrentOperation()).'Configuration'; + ...
10
diff --git a/articles/protocols/saml/saml-apps/index.md b/articles/protocols/saml/saml-apps/index.md --- description: This page lists SAML Configurations for various SSO integrations including Google Apps, Hosted Graphite, Litmos, Cisco Webex, Sprout Video, FreshDesk, Tableau Server, Datadog, Egencia, Workday and Plura...
0
diff --git a/src/filters/filterselectorComponent.js b/src/filters/filterselectorComponent.js @@ -576,6 +576,7 @@ export class FilterSelectorController { if (!dataSource) { return; } + panels.openToolPanel('filter', {state: true}); // A data source has been selected. Make sure the component is active. if (!this.active) ...
11
diff --git a/assets/js/components/ErrorNotice.test.js b/assets/js/components/ErrorNotice.test.js @@ -44,7 +44,9 @@ describe( 'ErrorNotice', () => { ); } ); - afterEach( () => invalidateResolutionSpy.mockReset() ); + afterEach( () => { + invalidateResolutionSpy.mockReset(); + } ); it( "should not render the `Retry` butt...
4
diff --git a/test/jasmine/tests/axes_test.js b/test/jasmine/tests/axes_test.js @@ -1852,7 +1852,14 @@ describe('Test axes', function() { }); describe('handleTickValueDefaults', function() { + var viaTemplate; + function mockSupplyDefaults(axIn, axOut, axType) { + if(viaTemplate) { + axOut._template = axIn; + axIn = {};...
0
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml -name: Mark stale issues and pull requests - +name: "Mark stale issues and pull requests" on: schedule: - cron: "30 1 * * *" - jobs: stale: - runs-on: ubuntu-latest - steps: - uses: actions/stale@v3 with:
1
diff --git a/docs/articles/documentation/test-api/assertions/README.md b/docs/articles/documentation/test-api/assertions/README.md @@ -97,7 +97,7 @@ The following web page is an example: <script> var btn = document.getElementById('btn'); -btn.addEventListener(function() { +btn.addEventListener('click', function() { win...
1
diff --git a/pages/app/MyRW.js b/pages/app/MyRW.js @@ -28,7 +28,7 @@ const MYRW_TABS = [{ label: 'Datasets', value: 'datasets', route: 'myrw', - params: { tab: 'datasets' } + params: { tab: 'datasets', subtab: 'my_datasets' } }, { label: 'Widgets', value: 'widgets',
12
diff --git a/test/www/jxcore/bv_tests/testThaliNotificationClient.js b/test/www/jxcore/bv_tests/testThaliNotificationClient.js @@ -446,6 +446,37 @@ test('Resolves an action locally', function (t) { notificationClient._peerAvailabilityChanged(globals.TCPEvent); }); +test('Ignores errors thrown by peerPool.enqueue', func...
0
diff --git a/packages/cli/src/models/compiler/Compiler.ts b/packages/cli/src/models/compiler/Compiler.ts @@ -7,8 +7,8 @@ import { CompilerOptions } from './solidity/SolidityContractsCompiler'; const log = new Logger('Compiler'); export default { - async call(): Promise<void> { - Truffle.isTruffleProject() + async call(...
0
diff --git a/public/viewjs/purchase.js b/public/viewjs/purchase.js @@ -45,7 +45,7 @@ $('#save-purchase-button').on('click', function(e) jsonData.price = price; } - if (Grocy.UserSettings.show_purchased_date_on_purchase) + if (BoolVal(Grocy.UserSettings.show_purchased_date_on_purchase)) { jsonData.purchased_date = Grocy...
1
diff --git a/src/components/accounts/ledger/LedgerSignInModal.js b/src/components/accounts/ledger/LedgerSignInModal.js @@ -55,6 +55,10 @@ const AnimateList = styled.div` background: #8fd6bd; color: #1f825f; } + &.confirm .status { + background: #6ad1e3; + color: #14889d; + } &.pending .status { background: #f4c898; col...
9
diff --git a/src/selectors/base-selector.js b/src/selectors/base-selector.js @@ -173,15 +173,6 @@ class BaseSelector extends Component { } } - getFocusedOptionId() { - const filteredResults = this.filterSuggestions(); - const {highlightedSuggestionIndex} = this.state; - if (filteredResults.length > 0 && highlightedSugg...
4
diff --git a/dc-worker.js b/dc-worker.js @@ -273,9 +273,9 @@ const _handleMethod = async ({method, args, instance: instanceKey, taskId}) => { } } case 'setCamera': { - const {instance: instanceKey, position, quaternion, projectionMatrix} = args; + const {instance: instanceKey, worldPosition, cameraPosition, cameraQuate...
0
diff --git a/token-metadata/0x679131F591B4f369acB8cd8c51E68596806c3916/metadata.json b/token-metadata/0x679131F591B4f369acB8cd8c51E68596806c3916/metadata.json "symbol": "TLN", "address": "0x679131F591B4f369acB8cd8c51E68596806c3916", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md @@ -11,4 +11,4 @@ Alternatively, you can simply open up the index.html file and run it through the ## Adding Pages -For now, you should refer to the [docute documentation](https://docute.js.org/#/home) in order to figure out how to add/edit existing pages. Or you can just ...
1
diff --git a/token-metadata/0x3212b29E33587A00FB1C83346f5dBFA69A458923/metadata.json b/token-metadata/0x3212b29E33587A00FB1C83346f5dBFA69A458923/metadata.json "symbol": "IMBTC", "address": "0x3212b29E33587A00FB1C83346f5dBFA69A458923", "decimals": 8, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/app/containers/ConnectDapp/ConnectDapp.jsx b/app/containers/ConnectDapp/ConnectDapp.jsx // @flow import React, { useEffect, useState } from 'react' import classNames from 'classnames' -import { wallet } from '@cityofzion/neon-js-next' +import { wallet, rpc } from '@cityofzion/neon-js-next' import axios fro...
3
diff --git a/lib/targets/ios/tasks/list-devices.js b/lib/targets/ios/tasks/list-devices.js @@ -6,25 +6,26 @@ const deserializeDevices = function(stdout) { if (stdout === undefined) { return devices; } let list = stdout.split('\n'); - //First line is always 'known devices' + + //First line is always '== Devices ==' list...
14
diff --git a/CHANGELOG.md b/CHANGELOG.md ## 7.11.2 (unreleased) -### Breaking - -### Feature - -- Increase z-index of `block-add-button` @steffenri - ### Bugfix - Fix `null` response issue when passing custom `Accept:` headers to actions #1771 @avoinea - Removed all `<<<<<HEAD` artifacts from translations @steffenri +-...
6
diff --git a/docs/specs/dynamic-query-params.yaml b/docs/specs/dynamic-query-params.yaml @@ -9,7 +9,11 @@ paths: - Query Params summary: Various ways to pass query params description: > - Following OpenAPI spec demnstrate various ways to pass query params. It os also possible to create dynamic query params from the key...
7
diff --git a/static/css/app.css b/static/css/app.css @@ -726,3 +726,13 @@ input[type=number]::-webkit-outer-spin-button { flex-direction: column; align-items: center; } + +/** +* Maps +**/ +#siteMap { + min-height: 400px; + /* The height is 400 pixels */ + width: 100%; + /* The width is the width of the web page */ +} ...
0
diff --git a/lib/core/plugin.js b/lib/core/plugin.js @@ -24,7 +24,6 @@ var Plugin = function(options) { this.pluginTypes = []; this.uploadCmds = []; this.apiCalls = []; - this.processes = []; this.imports = []; this.embarkjs_code = []; this.embarkjs_init_code = {}; @@ -232,11 +231,6 @@ Plugin.prototype.registerAPICall ...
2
diff --git a/src/compiler/nodes.imba1 b/src/compiler/nodes.imba1 @@ -7444,11 +7444,12 @@ export class TagModifier < TagPart @name.traverse @name = @name.value - if @name isa IsolatedFunc # not to be isolated for tsc + if @name isa Func # not to be isolated for tsc let evparam = @name.params.at(0,yes,'e') let stateparam...
7
diff --git a/src/utils/wallet.js b/src/utils/wallet.js @@ -750,7 +750,12 @@ class Wallet { const { publicKey, secretKey } = parseSeedPhrase(seedPhrase) const tempKeyStore = new nearApiJs.keyStores.InMemoryKeyStore() - const accountIds = accountId ? [accountId] : await getAccountIds(publicKey) + let accountIds = [accoun...
11
diff --git a/src/struct/Command.js b/src/struct/Command.js @@ -23,8 +23,8 @@ const { ArgumentMatches, ArgumentSplits } = require('../util/Constants'); * <br>The exec function is <code>((message, edited) => {})</code>. * @prop {PromptOptions} [defaultPrompt={}] - The default prompt options. * @prop {Object} [options={}]...
5
diff --git a/src/createReduxForm.js b/src/createReduxForm.js @@ -998,8 +998,8 @@ const createReduxForm = (structure: Structure<*, *>) => { const pristine = shouldResetValues || deepEqual(initial, values) const asyncErrors = getIn(formState, 'asyncErrors') - const syncErrors = getIn(formState, 'syncErrors') || {} - cons...
4
diff --git a/util.js b/util.js @@ -369,4 +369,18 @@ export function convertMeshToPhysicsMesh(mesh) { const newGeometry = BufferGeometryUtils.mergeBufferGeometries(newGeometries); const physicsMesh = new THREE.Mesh(newGeometry); return physicsMesh; -}; \ No newline at end of file +} + +export function parseCoord(s) { + ...
0
diff --git a/app/components/DepositWithdraw/blocktrades/BlockTradesBridgeDepositRequest.jsx b/app/components/DepositWithdraw/blocktrades/BlockTradesBridgeDepositRequest.jsx @@ -701,8 +701,12 @@ class BlockTradesBridgeDepositRequest extends React.Component { output_coin_info.backingCoinType != pair.inputCoinType && inpu...
11
diff --git a/GETTING_STARTED.md b/GETTING_STARTED.md @@ -69,5 +69,5 @@ Please take o look at the [video]( https://www.youtube.com/watch?v=bxdC7MfrO7A&t - [Node.js i18n](https://github.com/nodejs/i18n) repo - [nodejs/node](https://github.com/nodejs/node/tree/master/doc) repository - [Crowdin](https://crowdin.com/) -- [N...
1
diff --git a/app/features/selectable.js b/app/features/selectable.js @@ -467,7 +467,7 @@ export function Selectable() { hover_state.target = el hover_state.element = no_hover - ? null + ? createCorners(el) : createHover(el) hover_state.label = no_label @@ -616,6 +616,19 @@ export function Selectable() { } } + const cre...
4
diff --git a/src/client/js/legacy/crowi.js b/src/client/js/legacy/crowi.js @@ -371,6 +371,7 @@ $(function() { .done(function(res) { // error if (!res.ok) { + $('#renamePage .msg, #unportalize .msg').hide(); $(`#renamePage .msg-${res.code}, #unportalize .msg-${res.code}`).show(); $('#renamePage #linkToNewPage, #unportal...
7
diff --git a/avatars/avatars.js b/avatars/avatars.js @@ -58,6 +58,7 @@ const animationsSelectMap = { 'Rifle Idle.fbx': new THREE.Vector3(0, Infinity, 0), 'Standing Torch Idle 01.fbx': new THREE.Vector3(0, Infinity, 0), 'standing melee attack downward.fbx': new THREE.Vector3(0, Infinity, 0), + 'sword and shield idle.fbx...
0
diff --git a/server/migrations.js b/server/migrations.js @@ -518,7 +518,7 @@ Migrations.add('add-templates', () => { }); }); -Migrations.add('fix-circular-reference', () => { +Migrations.add('fix-circular-reference_', () => { Cards.find().forEach((card) => { if (card.parentId === card._id) { Cards.update(card._id, {$se...
10
diff --git a/spec/connectors/importer_spec.rb b/spec/connectors/importer_spec.rb @@ -512,24 +512,6 @@ describe CartoDB::Connector::Importer do map.center.should eq "[39.75365697136308, -2.318115234375]" end - it 'fails to import a visualization export if public map quota is exceeded' do - filepath = "#{Rails.root}/serv...
5
diff --git a/src/apps.json b/src/apps.json "html": "Powered by <a href=\"[^>]+SilverStripe", "icon": "SilverStripe.svg", "meta": { - "generator": "SilverStripe" + "generator": "^SilverStripe" }, - "website": "http://www.silverstripe.org" + "implies": "PHP", + "website": "https://www.silverstripe.org" }, "SimpleHTTP": {...
7
diff --git a/dom-renderer.jsx b/dom-renderer.jsx import * as THREE from 'three'; -import {sceneLowerPriority} from './renderer.js'; +// import {sceneLowerPriority} from './renderer.js'; import easing from './easing.js'; +import physicsManager from './physics-manager.js'; const cubicBezier = easing(0, 1, 0, 1); @@ -36,6...
0
diff --git a/generators/entity-server/templates/src/test/java/package/web/rest/EntityResourceIT.java.ejs b/generators/entity-server/templates/src/test/java/package/web/rest/EntityResourceIT.java.ejs @@ -586,7 +586,11 @@ _%> <%_ if (searchEngine === 'elasticsearch') { _%> // Validate the <%= entityClass %> in Elasticsea...
1
diff --git a/test/jasmine/tests/axes_test.js b/test/jasmine/tests/axes_test.js @@ -4222,6 +4222,123 @@ describe('Test axes', function() { ]); }); + it('should discard coords within break bounds - date hour case of [23, 1]', function() { + _calc({ + x: [ + '2020-01-01 22', + '2020-01-01 23', + '2020-01-01 23:30', + '202...
0
diff --git a/src/components/general/map-gen/MapGen.jsx b/src/components/general/map-gen/MapGen.jsx import * as THREE from 'three'; import React, { useState, useEffect, useRef } from 'react'; -// import classnames from 'classnames'; +import classnames from 'classnames'; // import {world} from '../../../../world.js'; // ...
0